C++ Primer Plus (第六版)之旅 第二章

<pre name="code" class="cpp">// myfirst.cpp--displays a message---我的第一个例子

#include <iostream>                           // a PREPROCESSOR directive---预处理指令
int main()                                    // function header---函数头
{                                             // start of function body---函数体开始
    using namespace std;                       
    cout << "Come up and C++ me some time.";  //打印到啊dos窗框上
    cout << endl;                             // start a new line---开始新的一行
    cout << "You won't regret it!" << endl;   // more output---更多的输出
// If the output window closes before you can read it,---如果你看不到,加下下面这一段代码
// add the following code:
    // cout << "Press any key to continue." <<endl;
	// cin.get();                                                   
    return 0;                                 // terminate main()---结束主函数
}                                             // end of function body---函数体结束



有的人可能有疑问了,为啥有cin.get()呢?,这个就是为了让你运行程序的时候不至于一闪而过。


示例元素:

1.注释,由前缀//标识

2.预处理器编译指令#include <iostream>     //包含基本输入输出头文件

3.函数头:int main()

4.编译指令:using namespace     //使用名字空间

5.函数体,用{和}括号

6.cout<<endl                   // 换行

7.结束rerurn                   //程序结束

8.终止符  (它是语句的结束标记,是语句的组成部分,而不是语句之间的标记,、

    在c++中,所以不能省略分号。




 

你可能感兴趣的:(C++,C++,C++,Plus,Primer,Primer,Plus读书笔记)