0%

第一章:开始学习C++

开始学习C++

注意,本教程的所有示例都是基于运行 64 位系统 Windows 10 系统 编写的

编辑器为 JetBrains 赞助的 CLion

1)进入C++

​ 这是一个显示消息的C++程序,使用C++工具cout生成字符输出。

你会看到一些//打头的文字,不必担心,这并不是一些高深的语法,这只是注释而已,编译器将自动跳过,就像Python中的#

C++对大小写敏感,所以,并不能将 cout 写成CoutCOUT,程序将无法通过编译,

并且会指出使用了未知的标识符,所像koutcont都是不可取的。

文件扩展名cpp是一种常用的扩展名,可能会使用其他扩展参见附录一。

例1.1:
1
2
3
4
5
6
7
8
9
10
11
// myfirst.cpp -- display a message

#include <iostream> // a PREPROCESSOR directive
int main() // function header
{ // start of function body
using namespace std; // make definitions visible
cout << "Hello World Guys!"; // message
cout << endl; // start a new line.
cout << "This is my first program!" << endl; // more output
return 0;
}

附录:

1)

C++实现 源代码文件的扩展名
UNIX C、cc、cxx、c
GUN C++ C、cc、cxx、cpp、c++
Digital Mars cpp、cxx
Borland C++ cpp
Watecom cpp
Microsoft Visual C++ cpp、cxx、cc
Freestyle Code Warrior cp、cpp、cc、cxx、C++
交个朋友...