這一章算是簡介。
自己寫了幾個程式。
1. main函式的返回值
int main() { //after ./a.out, execute 'echo $?', it will output 7. return 7; }
2. 對comment的理解
#include <iostream> using namespace std; int main() { cout << "/*"; cout << "*/"; cout << /* "*/" */"; }
3. 對輸入的理解
#include <iostream> using namespace std; int main() { int a; int b; cin >> a >> b; cout << a << "\t" << b << endl; return 0; }
4. 無限輸入
#include <iostream> using namespace std; int main() { int sum = 0; int value; // Ctrl + D to end the input while (cin >> value) sum += value; cout << "Sum is: " << sum << endl; return 0; }