c++:hello world!

#include <iostream>
using namespace std;
void main()
{
    cout<<"hello world"<<endl;
 
}
 
1 #include <iostream>
2 using namespace std;
3 void main()
4 {
5     cout<<"hello world"<<endl;
6  
7 }
原文地址:https://www.cnblogs.com/ly123456/p/13088436.html