Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
134868 王丞杰 字符串中最大的数字 C++ Accepted 1 MS 276 KB 241 2025-11-01 16:51:05

Tests(10/10):


Code:

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