1. 下面这三个程序是等价的
#include
int main()
{
std::cout<<"hello,world!";
return 0;
}
#include //旧编译器,库名用.h结尾,cout前面不用std
int main()
{
cout<<"hello,world!";
return 0;
}
#include
using namespace std;
int main()
{
cout<<"hello,world!";
return 0;
}
2. 防止运行程序的时候,弹出窗口一闪而过,可以增加两个语句
#include
int main()
{
std::cout<<"hello world!\n";
char response;
std::cin>>response;
return 0;
}
3.文本编辑器是说记事本 字处理器是说office word类
4.编辑--编译(生成.obj/.o等目标文件)--链接--执行
阅读(440) | 评论(0) | 转发(0) |