| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 109304 | 陈铎文 | 字符串中最大的数字 | C++ | Wrong Answer | 1 MS | 276 KB | 199 | 2025-02-08 10:30:16 |
#include <bits/stdc++.h> using namespace std; int main() { char a[10001],max='0'; cin>>a; for(int i=1;i<=strlen(a);i++){ if(a[i]>max){ max=a[i]; } } cout<<max; return 0; }
------Input------
1
------Answer-----
1
------Your output-----
0