Create 1501_nitouryuu.cpp

pull/5/head
QuestionableE 2016-04-27 22:38:28 +08:00
parent f9b9d304dd
commit 62cd7d1068
1 changed files with 32 additions and 0 deletions

32
QUSTOJ/1501_nitouryuu.cpp Normal file
View File

@ -0,0 +1,32 @@
#include <stdio.h>
#include <string.h>
int main(void)
{
char a[101],b='9';
while(gets(a))
{
for(int c=0;c<strlen(a);c++)
{
if(a[c]>b)
b=a[c];
}
for(int c=0;c<strlen(a);c++)
{
printf("%c",a[c]);
if(a[c]==b)
printf("(max)");
}
printf("\n");
}
return 0;
}
/**************************************************************
Problem: 1501
User: 1508080122
Language: C
Result:
Time:0 ms
Memory:768 kb
****************************************************************/