Run ID:134581

提交时间:2025-10-28 19:45:28

#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int a,b,c,max=-1; cin>>a>>b>>c; if(max<a) max=a; if(max<b) max=b; if(max<c) max=c; cout<<"max="<<max; return 0; }