Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
146611 刘梓含 字符串中最大的数字 C++ Wrong Answer 0 MS 280 KB 218 2026-01-29 14:29:48

Tests(1/10):


Code:

#include<bits/stdc++.h> using namespace std; int main (){ char a[10001],max = 0; cin >> a; for(int i = 1;a[i] != '\0';i++) { if(max < a[i]) { max = a[i]; } } cout << max; return 0; }


Run Info:

------Input------
0
------Answer-----
0
------Your output-----