总是从Hello,World!开始

论坛

这个是一个简单的hello,world!程序。

#include 
using namespace std;
int main()
{
    cout << "Hello, world!" << endl;
    return 0;
}