1. 首先安裝g++
sudo apt-get install build-essential
2. 輸入一個簡單的cpp程序
#include <iostream>
using namespace std;
int main()
{
cout << "Hello Ubuntu!" << endl;
return 0;
}
3. 編譯
www.linuxidc.com@ubuntu:~/MyTrain/CPlus$ g++ -o hello.exe hello.cpp
4. 運行
www.linuxidc.com@ubuntu:~/MyTrain/CPlus$ ./hello.exe
5. 結果
Hello Ubuntu!