Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
146639 刘梓含 字符串中最大的数字 C++ Wrong Answer 0 MS 276 KB 252 2026-01-29 14:39:10

Tests(0/10):


Code:

#include<bits/stdc++.h> using namespace std; int main (){ char a[20]; cin >> a; int max = a[0] - '0'; for(int i = 0;a[i] != '\0';i++) { if(max < a[i] - '0') { max = a[i] - '0'; } } cout << max - '0'; return 0; }


Run Info:

------Input------
2147483647
------Answer-----
8
------Your output-----
-40