Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
4333 邓小龙 13求7个数的最大值 C++ Wrong Answer 0 MS 260 KB 295 2024-08-16 15:19:04

Tests(0/10):


Code:

# include<iostream> # include<iomanip> # include<climits> using namespace std; int main(){ int m=INT_MIN; int t; for(int i=1;i<=7;i++){//打擂台 cin>>t; if(t>m) m=t; //cout<<m<<" "; } // cout<<endl; cout<<m<<endl; return 0; }


Run Info:

------Input------
73 74 54 78 60 20 9
------Answer-----
6084 474552
------Your output-----
78