| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 156069 | 肖之睿 | 字符串中最大的数字II | C++ | Wrong Answer | 1 MS | 272 KB | 209 | 2026-06-21 09:38:34 |
#include<bits/stdc++.h> using namespace std; char a[1000000]; int main() { cin>>a; int mx=0; for(int i=0;a[i]!='\0';i++){ if(mx<a[i]){ mx=a[i]; } } cout<<double(mx); return 0; }
------Input------
214748.3647
------Answer-----
8
------Your output-----
56