查找最大元素
程序员文章站
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");
}
}
上一篇: 查找最大元素
下一篇: Docker 常见问题