Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
106116 | 胡海峰老师 | 求最大值 | C++ | Accepted | 0 MS | 272 KB | 353 | 2025-01-15 14:00:46 |
#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; // // } int i=1; while(i++<=10) { cin>>x; if(x>maxn) maxn = x; // i++; } cout<< maxn; return 0; } /* Input 10 6 1 3 5 87 100 25 111 56 Output 111*/