我的菜鳥路,第一次在ubuntu 13.10系統上執行c++程式

love密密發表於2015-10-31

點選 Activates——>Terminal,開啟終端。

首先安裝 g++:

                            sudo apt-get install g++

                            系統提示輸入使用者密碼:××××××

                             系統提示是否安裝,輸入 y 回車。

注:(g++是linux系統中的C++編譯器,安裝後可以在計算機任何一個目錄中編寫執行c++程式。)

開始編寫c++程式:

用gedit編輯,在終端中輸入gedit helloworld.cpp(在當前目錄新建一個名為helloworld.cpp的檔案)

開啟gedit編輯器,輸入程式:

#include<iostream>
using namespace std;
int main(){
cout<<"hello!"<<endl;

return 0;
}

儲存檔案,關閉視窗。

在終端輸入:g++ helloworld.cpp -o helloworld  (編譯、連結生成可執行檔案helloworld)

                      ./helloworld(執行目標檔案)

終端輸出執行結果:hello!

相關文章