emmmm


私信TA

用户名:130

访问量:12873

签 名:

1000年前,我是为了什么来到地球呢?

等  级
排  名 1584
经  验 2771
参赛次数 0
文章发表 16
年  龄 20
在职情况 学生
学  校 超神学院
专  业 弑神

  自我简介:

请叫我码农

解题思路:

注意事项:

参考代码:

#include<stdio.h>
int main()
{
	char str[100];
	int i;
	while(gets(str)!=NULL)
	{
		char max=str[0];
		for(i=1;str[i]!='\0';i++)
		{
			if(str[i]>max)
			max=str[i];
		}
		for(i=0;str[i]!='\0';i++)
		{
			printf("%c",str[i]);
			if(str[i]==max)
			printf("(max)");
		}
		printf("\n");
	}
 }


 

0.0分

0 人评分

  评论区

  • «
  • »