在Ubuntu 8.10中配置的C,C++编程环境测试(2)

记事本写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:~$

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wzyzxy.html