Programming basics
Linux command
指令 | 用途 | 用法 |
---|---|---|
cd | 進入目錄(資料夾) | cd <directory> |
ls | 顯示目錄中檔案 | ls [-la] |
rm | 刪除檔案 | rm <file> |
mkdir | 建立目錄 | mkdir <dir name> |
g++ | 編譯C++原始碼 | g++ <file name> |
./<program name> | 執行程式 | ./<program name> |
vim | 文字編輯器 | 見下頁 |
vim command
指令 | 用途 | 用法 |
---|---|---|
i | 進入輸入模式 | i |
ESC | 回到指令模式 | ESC |
:w | 存檔 | :wq 存檔並離開 |
:q | 離開 | :q! 不存檔就離開 |
vim <filename> | 開啟檔案用vim編輯 |
// use C++ standard library
#include <iostream>
using namespace std;
// each program must have main function
int main()
{
cout << "Hello World!" << endl;
//use "cout" to output text to screen
return 0;
}
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
int number;
cout << "Please input a number:";
cin >> number;
cout << "yout input is " << number << endl;
return 0;
}
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
int number1, number2;
cout << "Please input 2 number:";
cin >> number1 >> number2;
cout << "number1 is " << number1 << endl;
cout << "number2 is " << number2 << endl;
return 0;
}