Chinaunix首页 | 论坛 | 博客
  • 博客访问: 103655478
  • 博文数量: 19283
  • 博客积分: 9968
  • 博客等级: 上将
  • 技术积分: 196062
  • 用 户 组: 普通用户
  • 注册时间: 2007-02-07 14:28
文章分类

全部博文(19283)

文章存档

2011年(1)

2009年(125)

2008年(19094)

2007年(63)

分类: C/C++

2008-03-23 11:06:19

来源:赛迪网    作者:korn

不用IDE工具,只用终端,测试->编译->运行,一气呵成!

具体步骤:

1、确保已经安装gcc,安装方法:sudo apt-get install gcc

2、编写一个简单的cpp文件test.cpp,放在指定地方

示例:

# include 
using namespace std;

int larger(int, int);
int main(){
int i, j;
cout<<"请输入两个数:"< cin>>i>>j;
cout<<"较大的数是:"< }

int larger(int a,int b){
return a>=b?a:b;
}

将此程序保存在/home/user/桌面, 打开终端(注意user即你的系统用户名)

3、编译: g++ /home/user/桌面/test.cpp -o test.out

4、如果没有提示错误,可以运行编译后的程序:./test.out

说明:test.out可以替换为任意的名字。

阅读(249) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~