只在此山中,雲深不知處


聽首歌



© 2018 by Shawn Huang
Last Updated: 2018.5.27

Download & Install

安裝完成後,接下來寫個Hello World測試一下,首先先建立一個資料夾(e.g. MyC)在其內建立一個工作區資料夾(e.g. Workspace)。在Cold::Blocks內開啟新檔案,輸入以下程式碼,命名為Hello.cpp,儲存到Workspace內。
Hello.cpp
#include <iostream>
using namespace std;
int main(){
	cout << "Hello World" << endl;
	return 0;
}
若沒問題應會看到出現結果的DOS視窗。到Workspace資料夾內,會看到產生Hello.exe執行檔,雙擊執行檔,結果閃一下就消失了,可在return 0;之前一行加上system("pause");,接下來重新編譯執行(F9),再使用Hello.exe執行檔應可看到結果。

Basic

Comments

Escape sequence

Variables

Operators

Basic Input & Output

Flow Control

if...else

switch

while loop

for loop

break, continue, goto

function

Array & Class

Array

Class

Pointers

Address-of operator (&)

Dereference operator (*)

Dynamic memory

Class

Exceptions & IO

Exceptions

Input & Output