Run ID:146611
提交时间:2026-01-29 14:29:48
#include<bits/stdc++.h> using namespace std; int main (){ char a[10001],max = 0; cin >> a; for(int i = 1;a[i] != '\0';i++) { if(max < a[i]) { max = a[i]; } } cout << max; return 0; }