Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
118514 | 李昊宇 | 字符串中最大的数字II | C++ | Accepted | 1 MS | 276 KB | 252 | 2025-05-04 14:36:46 |
#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; }