Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
105423 欧阳俊懿 字符串中最大的数字II C++ Accepted 0 MS 276 KB 198 2025-01-13 16:05:34

Tests(10/10):


Code:

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