一个小白学习c++的心得整理
一、基础框架
代码如下(示例)
/*
这个代码段,一般开发环境会自动生成。
*/
#include <iostream>
using namespace std;
int main()
{
system("pause");
return 0;
}
2.HelloWorld
代码如下(示例):
#include <iostream>
using namespace std;
int main()
{
cout << "HelloWorld" << endl; //输出语句
system("pause") //按任意键结束
return 0;
}