| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 143683 | 马俊潇 | 求三个数的最大值 | C++ | Wrong Answer | 0 MS | 260 KB | 213 | 2026-01-17 14:51:27 |
#include<iostream> using namespace std; int main(){ int a,b,c,max; if(a>=b){ max=a;}else{ max=b;}if(max<=c){ max=c; }else{ max=max;} cout<<"max="<<max; return 0;}
------Input------
8 5 20
------Answer-----
max=20
------Your output-----
max=0