书写hello world #include <iostream> using namespace std; int main() { cout<<"helloworld"<<endl;//endl 换行符 system("pause"); return 0; }