QT循环打印一句字符串怎么打印
时间: 2023-12-03 07:04:54 浏览: 120
字符串打印
可以使用 C++ 中的循环语句 `for` 或 `while`,以及输出语句 `cout` 来循环打印一句字符串。
示例代码:
```cpp
#include <iostream>
using namespace std;
int main() {
// 定义字符串变量
string str = "Hello World!";
// 循环打印字符串
for (int i = 0; i < 10; i++) {
cout << str << endl;
}
return 0;
}
```
在上面的代码中,我们定义了一个字符串变量 `str`,并使用 `for` 循环语句循环打印 `str` 10 次。每次打印后使用 `endl` 换行。
阅读全文