1、输入组合键“Ctrl+Alt+t”调出终端;
2、需要在当前目录下创建一个.cpp文件,这里命名为first.cpp,通过命令“touch first.cpp”就可以直接创建该文件。
要查看是否创建成功,直接通过命令ls查看即可。
3、创建完first.cpp后,需要进行编写文件,也就是在文件中编写C++代码,Ubuntu下提供了一个程序编辑软件gedit,通过输入命令“gedit first.cpp”
然后就可以在该对话框中输入C++代码,编写完之后保存并关闭文件即可。
写入文件的代码示例为:
#include<iostream>
using namespace std;
int main()
{
cout<<"hello world"<<endl;
return 0;
}
保存ctrl+s 退出ctrl+q
4、用下面的命令在终端运行该first.cpp文件:
g++ first.cpp -o test
./test