怎么在ubuntu上运行c++程序
展开全部
在Ubuntu运行c++程序
在Ubuntu终端输入
sudo apt-get install build-esstial
sudo apt-get install g++ gdb
然后到:
http://www.codelite.org下载IDE。(可省)
安装好相关package
接在在vim下编辑hello.cpp文件,保存退出。
#include <iostream>
using namespace std;
int main()
{
cout << "Hello,C++!";
return 0;
}
再在终端执行sudo g++ hello.cpp -o hello
再在终端敲入 ./hello
即可看到运行结果
Hello,C++!
在Ubuntu终端输入
sudo apt-get install build-esstial
sudo apt-get install g++ gdb
然后到:
http://www.codelite.org下载IDE。(可省)
安装好相关package
接在在vim下编辑hello.cpp文件,保存退出。
#include <iostream>
using namespace std;
int main()
{
cout << "Hello,C++!";
return 0;
}
再在终端执行sudo g++ hello.cpp -o hello
再在终端敲入 ./hello
即可看到运行结果
Hello,C++!
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询