Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
118513 李昊宇 字符串中最大的数字 C++ Accepted 1 MS 276 KB 252 2025-05-04 14:35:06

Tests(10/10):


Code:

#include<bits/stdc++.h> using namespace std; char n[10]; int main(){ char max='0'; cin>>n; int nlen = strlen(n); for(int i=0;i<=nlen-1;i++){ if(n[i]>max){ max=n[i]; } } cout<<max; return 0; }