写一段c++代码,输出hello- world
时间: 2023-09-15 17:16:44 浏览: 115
用C语言写的输出hello world源代码.zip
以下是一个简单的 C++ 程序,输出 "Hello, world!":
```c++
#include <iostream>
using namespace std;
int main() {
cout << "Hello, world!" << endl;
return 0;
}
```
当你运行上述代码时,它会在终端输出 "Hello, world!"。
阅读全文