用C++输出hello world
时间: 2023-09-02 18:11:38 浏览: 87
用C语言写的输出hello world源代码.zip
以下是使用C++输出"hello world"的代码:
```c++
#include <iostream>
int main()
{
std::cout << "hello world" << std::endl;
return 0;
}
```
当你编译并运行这段代码时,你将在控制台上看到 "hello world"。
阅读全文