c++输出helloworld
时间: 2023-08-05 07:04:29 浏览: 87
c++显示hello world!
5星 · 资源好评率100%
可以使用以下代码在C++中输出“helloworld”:
```
#include <iostream>
using namespace std;
int main() {
cout << "helloworld" << endl;
return 0;
}
```
其中,`cout`是C++标准库中用于输出的对象,`<<`是输出符号,`endl`表示换行,`return 0;`表示程序执行成功,可以退出。
阅读全文