Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
156993 邓弘锐 字符串中最大的数字 C++ Wrong Answer 1 MS 268 KB 232 2026-07-12 14:14:41

Tests(0/10):


Code:

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


Run Info:

------Input------
2147483647
------Answer-----
8
------Your output-----
9