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

2025-04-03 11:06:47
推荐回答(4个)
回答1:

直接上代码:

#include 
#include 

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;
}

回答2:

#include 
using namespace std;
int main()
{
int a,b,c;
cin>>a>>b>>c;
cout<<"最大值:"<<((a>b?a:b)>c?a>b?a:b:c)<<" 最小值:"<<((areturn 0;
}

回答3:

#include
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<

回答4:

#include
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 <cout << "最小值:" << min <return 0;
}