HUST Online Judge WebBoard
Problem 1137 >> 题中“最大字母”的理解
201916010115 @ 2019-11-03 02:12:02
[ Quote ] [ Edit ] [ Delete ] 1#
感觉题目没有明确这个最大是指ASCII码的最大还是字母表顺序的最大啊。如果是后者,那么Z和z就应该视为同样的最大字符。当然...本题说的是前者。
201916050321 @ 2019-11-13 13:56:42
[ Quote ] [ Edit ] [ Delete ] 2#
#include <stdio.h>
#include <stdlib.h>

int main()
{
char a,b,c,d,max;
scanf("%c%c%c",&a,&b,&c);
if(a>b)d=a;
else d=b;
if(d>c)max=d;
else max=c;
printf("%c\n",max);
return 0;
}