任意输入3个数,输出其中最大的数和最小的数 c++语言

任意输入3个数,输出其中最大的数和最小的数——请使用ifelse... 任意输入3个数,输出其中最大的数和最小的数——请使用if else 展开
 我来答
shangwu2272
2010-10-24
知道答主
回答量:63
采纳率:0%
帮助的人:26.5万
展开全部
这是纯if else语句,我建议不要这样写
#include<stdio.h>
void main()
{
int a,b,c;
scanf("%d",&a);
scanf("%d",&b);
scanf("%d",&c);
if(a>b)
{
if(a>c)
{
printf("the max is %d \n",a);
if(b>c)
{
printf("the min is %d \n",c);
}
else
{
printf("the min is %d \n",b);
}
}
else
{
printf("the max is %d \n",c);
if(a>b)
{
printf("the min is %d \n",b);
}
else
{
printf("the min is %d \n",a);
}
}
}
else
{
if(b>c)
{
printf("the max is %d \n",b);
if(a>c)
{
printf("the min is %d \n",c);
}
else
{
printf("the min is %d \n",a);
}
}
else
{
printf("the max is %d \n",c);
if(a>b)
{
printf("the min is %d \n",b);
}
else
{
printf("the min is %d \n",a);
}
}
}
getch();
}
420910176
2010-10-24 · TA获得超过5430个赞
知道小有建树答主
回答量:1805
采纳率:0%
帮助的人:1187万
展开全部
#include <iostream>
using namespace std;
int main(){
double a, b, c, temp;
if(a < b){
temp = a;
a = b;
b = temp;
}
if(b < c){
temp = b;
b = a;
a = temp;
}
if(a < c){
temp = a;
a = c;
c = temp;
}
cout <<a <<" " <<c<<endl;
return 0;
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式