pvjc20/du1/program.c

17 lines
247 B
C
Raw Normal View History

2020-03-03 17:21:21 +00:00
#include <stdio.h>
2020-03-06 00:03:46 +00:00
#include<string.h>
#include<ctype.h>
int main()
{
char str[100];
scanf("%[^\n]s",str);
for(int i=0;i<strlen(str);i++){
str[i]=toupper(str[i]);
}
printf("%s\n",str);
return 0;
2020-03-03 17:21:21 +00:00
}