| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 151551 | xyc | 13求7个数的最大值 | C++ | Wrong Answer | 1 MS | 268 KB | 214 | 2026-04-13 17:27:57 |
#include <iostream> using namespace std; int main(){ int max; for(int i;i<=7;i++){ int a; cin>>a; if(max<a){ max=a; } } cout<<max*max<<endl; cout<<max*max*max<<endl; return 0; }
------Input------
64 70 75 65 23 100 7
------Answer-----
10000 1000000
------Your output-----
2080952384 1244282368