C语言类问题 输入字符串,输出该字符串中ASCII码值最大和最小的字符?麻烦高手解决一下 谢谢哈 会加分

2024-12-18 13:39:17
推荐回答(1个)
回答1:

main()
{
char s[100];
char max,min;
int i=1;
scanf("%s",s);
max=s[0],min=s[0];
while(s[i]!='\0')
{ if(max max=s[i];
if(min>s[i])
min=s[i];
i++;
}
printf("最大字符:%c,最小字符:%c",max,min);
}