题解
2025-05-04 22:10:16
发布于:江苏
11阅读
0回复
0点赞
#include<iostream>
using namespace std;
int main(){
int a,b,c;
cin>>a>>b>>c;
if(a>b){
if(b>c){
cout<<c;
}else{
cout<<b;
}
}else{
if(a>c){
cout<<c;
}else{
cout<<a;
}
}
return 0;
}
这里空空如也
有帮助,赞一个