c++打印字符串
时间: 2023-08-20 20:14:28 浏览: 113
c++_按顺序输出字符串_
在 C++ 中,可以使用 cout 语句来打印字符串。具体代码如下:
```cpp
#include <iostream>
using namespace std;
int main() {
string str = "Hello, World!";
cout << str << endl;
return 0;
}
```
运行该程序,输出结果为:
```
Hello, World!
```
阅读全文