1 C++初识

1.1 第一个C++程序

编写一个C++程序总共分为4个步骤

  • 创建项目

  • 创建文件

  • 编写代码

  • 运行程序

1.1.1 创建项目

Visual Studio是我们用来编写C++程序的主要工具,我们先将它打开

image.png


image.png


1.1.2 创建文件

右键源文件,选择添加->新建项

image.png

给C++文件起个名称,然后点击添加即可。

image.png


1.1.3 编写代码

#include<iostream>
using namespace std;int main() {

cout << "Hello world" << endl;
system("pause");
return 0;
}

1.1.4 运行程序

image.png