C++'s HelloWorld

65 阅读1分钟
#include <iostream>//头文件  
using namespace std;//名词空间
int main()//主函数
{
    cout << "Hello World!" << endl;//输出
    return 0;//返回值
}

\