第一个c++程序:my_first.cpp

编译器Microsoft Visual Studio 2017

文件->新建->项目->visual C++->Windows 控制台应用程序(Win32 Console Application)

->确定。

在源文件(my_first.cpp)中代码如下:

// my_first.cpp: 定义控制台应用程序的入口点。
//my_first.app display a message

#include "stdafx.h"

#include<iostream>
int main()
{
using namespace std; //make definations visible(使得std空间的名称可用)(此处先接受,后面有详细说明)
cout << "Come up and C++ me some time."; //print message on screen,相当于C语言的printf
cout << endl; //start a new line 相当于C的\n的换行
cout << "You won't regret it!" << endl; //more output ,cout可以输出多条语句
cin.get(); //保持窗口打开,直至按下按键
return 0;
}

 

 

 

接下来按F5执行

则调出控制台窗口。显示如下:

C++学习笔记(二开始学习C++)_c++

 

my_first.cpp的基本结构是:

int main()

{

...

return 0;

}