如何用C++完成Helloworld的编写

Helloworld.cpp

代码示例:

1
2
3
4
5
6
7
8
9
10
11
#include <bits/stdc++.h>

using namespace std;

int main(){

cout<<"hello world!"<<endl;

return 0;

}

这样就写好了,是不是很简单呢~

-------------本文结束,感谢您的阅读-------------