Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
134856 刘益梵 字符串中最大的数字 C++ Accepted 1 MS 272 KB 258 2025-11-01 16:47:08

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; char a[10000]; int main(){ cin>>a; char max='0'; int len=strlen(a); for(int i=0;i<len;i++){ if(a[i]>='0' && a[i]<='9'){ if(a[i]>max){ max = a[i]; } } } cout<<max; return 0; }