//包括“iostream”头文件(C++标准输入输出流)
#include <iostream>
using namespace std; //使用“std”命名空间
int main() { //定义main函数(程序主入口)
cout << “Hello,World” << endl; //输入Hello,World
system(“pause”); //执行系统命令“pause”(按任意键继续,仅对Windows系统环境有效)
return 0; //返回0
}
如果把第三行代码using namespace std;
去掉,那么代码需要改成:
//包括“iostream”头文件(C++标准输入输出流)
#include <iostream>
int main() { //定义main函数(程序主入口)
std::cout << “Hello,World” << std::endl; //输入Hello,World
system(“pause”); //执行系统命令“pause”(按任意键继续,仅对Windows系统环境有效)
return 0; //返回0
}
在第五行,cout
和endl
的前面加上了一个std::