编写一个程序,输入一个字符串,输出其中ASCII码中最大的字符

#include 
int main()
{
	char ch[81];
	char max;
	int i;

	printf("请输入一个字符串:\n");
	fgets(ch, 81, stdin);
	max = ch[0];

	for (i = 1; ch[i] != '\0'; i++)
		if (ch[i] > max)
			max = ch[i];

	printf("其中ASCII码中最大的字符是:%c\n", max);
	return 0;
}

 

你可能感兴趣的:(编写一个程序,输入一个字符串,输出其中ASCII码中最大的字符)