题解(可抄,但你羞耻吗)

Ecky7 吉祥物 2023-08-31 21:49:45 2023-08-31 21:50:33 26

太简单了,不讲了 #include

using namespace std;

int main(){

int x,s,a;

cin>>x>>s>>a;

if(x>=s && x>=a){

cout<<x;

}else if(s>=x && s>=a){

cout<<s;

}else{

cout<<a;

}

return 0;

}

{{ vote && vote.total.up }}

共 2 条回复

wcyyf

嘿嘿

wcyyf