欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

查找最大元素

程序员文章站 2022-05-12 17:28:26
...

这是一次测试!

#include <stdio.h>
#include <string.h>

//I could have changed my mind,not two arrays,but one
//2.0的做法核心为两次循环,一次循环比对出最大的字符并记录下来 ,
int main(){
	char a[50];
	int len,i;
	while(~scanf(" %s", &a)){
		char max='A';//here is a wrong that i ignored resetting max 
		//I have made this mistake more than once
		len=strlen(a);
		for(i=0;i<len;i++){
			if(a[i]>max)
				max=a[i];
		}
		for(i=0;i<len;i++){
			printf("%c", a[i]);
			if(a[i]==max)
				printf("(max)");
		}
		printf("\n");
	}
}