Run ID:117808

提交时间:2025-04-20 12:46:04

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