Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
105474 杜春雨 字符串中最大的数字II C++ Accepted 1 MS 272 KB 202 2025-01-13 16:47:57

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; }