Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
82546 刘慕莀 字符串中最大的数字II C++ Accepted 1 MS 276 KB 205 2024-07-13 11:59:36

Tests(10/10):


Code:

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