1.創(chuàng)建cpp文件:
在終端中輸入 vim test.cpp
2.進(jìn)入test.cpp文件輸入:
#include
using namespace std;
int main(){
cout <<"hello world"<<return0;
}
3.保存退出
點(diǎn)擊 " esc "鍵志秃,輸入" :wq "后回車
4.運(yùn)行
g++ -o test test.cpp
這個(gè)時(shí)候在你的存儲(chǔ)test.cpp位置就會(huì)出現(xiàn)test編譯好的文件喂链,執(zhí)行以下命令岸军,將展示出結(jié)果
./test