Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
4631 | 高振轩 | 求最大值 | C++ | Wrong Answer | 0 MS | 256 KB | 156 | 2024-08-24 16:08:24 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b; for(int i=1;i<=10;i++){ cin>>a; if(a>b){ b=a; } }cout<<b<<endl; }
------Input------
99 12 235 23 346 423 31612 4389 934 37
------Answer-----
31612
------Your output-----
7606296