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