记事本写C++并用g++纊译
同样,启动记事本gedit
写代码:
#include<iostream>
using namespace std;
int main()
{
cout<<"Hi,learning c++ in g++"<<endl;
return 0;
}
保存在主文件夹目录下,名字就叫noteplus.cpp
启动终端,执行命令:
zhouxiongfei@Ubuntu:~$ g++ noteplus.cpp -o noteplus
zhouxiongfei@ubuntu:~$ ./noteplus
Hi,learning c++ in g++
zhouxiongfei@ubuntu:~$