Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
82542 陈俊洁 字符串中最大的数字II C++ Accepted 1 MS 276 KB 195 2024-07-13 11:58:36

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