Run ID:110475
提交时间:2025-02-21 21:29:14
#include <bits/stdc++.h> using namespace std; int main() { int a[10]; for(int i=0; i<10; ++i) cin>>a[i]; long long m=-99999999999; for(int j=0; j<10; ++j){ if(a[j]>m) m=a[j]; } cout<<m; return 0; }