C++编程输出hello world
时间: 2023-07-05 16:24:50 浏览: 100
用C语言写的输出hello world源代码.zip
在C++中输出hello world可以使用cout语句,代码如下:
```
#include <iostream>
using namespace std;
int main() {
cout << "hello world" << endl;
return 0;
}
```
执行该程序,会输出 "hello world" 字符串,其中 `<<` 符号是输出运算符, endl 是换行符,表示输出完后换行。
阅读全文