ubuntu中編譯c++程序的方法:
1.打開終端使用vim編輯c++代碼。
vim hello.cpp
輸入如下代碼:
#include
using namespace std;
int main()
{
cout<<"Hello world!"<
return 0; }
保存修改。
2.使用以下命令進行編譯。
gcc hello.cpp -lstdc++ -o hello
//或
g++ hello.cpp -o hello
3.運行可執行文件,在當前目錄下輸入以下命令查看結果。
./hello