#include //包含头文件
using namespace std; //使用标准的命名空间
int main() //主函数,有且唯一 { cout << "Hello,World!" << endl; //cout 输出 endl 换行 return 0; //返回零 }