答案

孔声豪  •  13天前


#include<bits/stdc++.h>

 using namespace std; 

int main(){ 

int a,b,c,d;

 cin>>a>>b>>c;

 if(a>b) {

 d=a;

 }

 else {

 d=b; 

}

 if(d>c){

 cout<<d<<endl; 

else{ 

cout<<c<<endl; 

}

 return 0;

 } 


评论:

 


ztx  •  11天前

 


zlx  •  11天前