编写一个C++程序总共分为4个步骤
? Visual Studio是我们用来编写C++程序的主要工具,我们先将它打开
右键源文件,选择添加->新建项
给C++文件起个名称,然后点击添加即可。
#include<iostream>
using namespace std;
int main() {
cout << "Hello world" << endl;
system("pause");
return 0;
}
原文:https://www.cnblogs.com/zhengqiangchen/p/14852101.html