Manba never out

黑曼巴  •  17天前


using namespace std; float cytsc(float a,float b) {

if(a>b) return a;
else return b;

} int main(){

double a,b,c;
cin>>a>>b>>c;
cout<<cytsc(a,cytsc(b,c))<<endl;
return 0;

}


评论: