Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
4203 D班-陈颖钧 闯关大冒险? C++ 通过 100 1 MS 272 KB 200 2025-01-05 16:40:30

Tests(5/5):


#include<bits/stdc++.h> using namespace std; int main(){ int max=0,n; cin>>n; while(n>0){ if(max<n%10){ max=n%10; } n/=10; } cout<<max; }


测评信息: