Run ID:117803

提交时间:2025-04-20 12:40:15

#include<bits/stdc++.h> using namespace std; int main() { int a, b,c,d,e; scanf("%d%d%d", &a, &b,&c); if (a >= b) { d = a; } else { d = b; } if (d >= c) { e = d; } else { e = c; } cout << "max=" << c; return 0; }