用C++ 输入三个整数 输出最大值和最小值

 我来答
Honey_ToBeNo_1
2016-11-22 · TA获得超过499个赞
知道小有建树答主
回答量:269
采纳率:75%
帮助的人:143万
展开全部

直接上代码:

#include <stdio.h>
#include <stdlib.h>

int main(void) {
    int test[3];
    
    printf("请输入3个整数\n");

    for(int i=0; i<3; i++) {
        printf("第 %d 个  ",i+1);
        scanf("%d",&test[i]);
    }

    printf("最大数 %d\n", (test[0] > (test[1] > test[2] ? test[1] : test[2]) ? test[0] : (test[1] > test[2] ? test[1] : test[2])));
    printf("最小数 %d\n", (test[0] < (test[1] < test[2] ? test[1] : test[2]) ? test[0] : (test[1] < test[2] ? test[1] : test[2])));
    return 0;
}
xuzhouliuying
高粉答主

2018-05-12 · 繁杂信息太多,你要学会辨别
知道顶级答主
回答量:5.4万
采纳率:86%
帮助的人:2.5亿
展开全部
#include <iostream>
using namespace std;
int main()
{
int a,b,c;
cin>>a>>b>>c;
cout<<"最大值:"<<((a>b?a:b)>c?a>b?a:b:c)<<" 最小值:"<<((a<b?a:b)<c?a<b?a:b:c);
return 0;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友aac2b31
2019-07-08
知道答主
回答量:1
采纳率:0%
帮助的人:718
展开全部
#include<bits/stdc.h>
using namespace std;
int main()
{
int a,b,c,d,m;
cout>>“请输入个数:”
cin>>a>>b>>c;
m=a;
if(b>a)
{
b=m;
}

if(c>a)
{
c=m;
}
cout<<m<<endl;
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
匿名用户
推荐于2018-05-12
展开全部
#include<iostream>
int main(){
int a[10];
int i,min,max;
while(cin >> a[i]){
min=a[0];
max=a[1];
if(a[0] > a[1]) { min=a[1]; max=a[0]; }
else if(a[2] < a[0]) { min=a[2];}
else if(a[2] > a[1]) { max=a[2]; }
else{;}
}
cout << "最大值:" << max <<endl;
cout << "最小值:" << min <<endl;
return 0;
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式