Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2341872
  • 博文数量: 816
  • 博客积分: 10000
  • 博客等级: 上将
  • 技术积分: 5010
  • 用 户 组: 普通用户
  • 注册时间: 2008-12-17 17:57
文章分类

全部博文(816)

文章存档

2011年(1)

2008年(815)

分类:

2008-12-17 18:03:52

#include
using std::cout;
using std::cin;
using std::endl;
int larg(int x,int y,int z)
{ int d;
if (x>y)
{if (x>z) d=x;
else d=z;}
else if (x{if(y>z) d=y;
else d=z;}
return d;
};
int sma(int x,int y,int z)
{int d;
if(x>y)
{if (y>z)d=z;
else d=y;}
else if(x{if(xelse d=z;
return d;
};

 int main()
{
int a,b,c,sum,average,product,smallest,largest;
cout<<"input three different integers:"< cin>>a>>b>>c>>endl;
      sum=a+b+c;
  average=(a+b+c)/3;
  product=a*b*c;
  smallest=sma(a,b,c);
  largest=larg(a,b,c);
  cout<<"sum is "<   cout<<"average is "<   cout<<"product is"<   cout<<"smallest is "<   cout<<"largest is"<   return 0;
} 一个简单的求3个数的 和 平均数 最大 最小值的程序


--------------------next---------------------

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