e
2024-10-27 16:10:13
发布于:广东
1阅读
0回复
0点赞
#include<iostream>
#include<cmath>
using namespace std;
int main(){
int a,b,c,sum;
cin>>a>>b>>c;
sum=max(max(a,b),c);
if(sum==a){
if(max(b,c)==b){
cout<<a+b;
return 0;
}
else{
cout<<a+c;
return 0;
}
}
if(sum==b){
if(max(a,c)==a){
cout<<a+b;
return 0;
}
else{
cout<<c+b;
return 0;
}
}
if(sum==c){
if(max(a,b)==b){
cout<<c+b;
return 0;
}
else{
cout<<a+c;
return 0;
}
}
return 0;
}
这里空空如也
有帮助,赞一个