Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
105472 林嘉乐 字符串中最大的数字II C++ Accepted 1 MS 280 KB 211 2025-01-13 16:47:46

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; int main() { char a[12],b; cin>>a; b=a[0]; int n; n=strlen(a); for(int i=1;i<n;i++){ if(a[i]>b) b=a[i]; } cout<<b<<endl; return 0; }