Run ID:108579
提交时间:2025-01-20 20:58:17
#include <iostream> using namespace std; int main () { int x,maxn=0; for(int i=1;i<=10;i++) { cin>>x; if( x>maxn) maxn =x; } cout<<maxn; return 0; } /* Input 10 6 1 3 5 87 100 25 111 56 Output 111 */