baekjoon 20260409
This commit is contained in:
parent
f530361b18
commit
6c995e852d
16
code_study/Baekjoon/c/4458.c
Normal file
16
code_study/Baekjoon/c/4458.c
Normal file
@ -0,0 +1,16 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main() {
|
||||
int N;
|
||||
char S[31];
|
||||
scanf("%d", &N);
|
||||
getchar();
|
||||
|
||||
while(N--) {
|
||||
gets(S);
|
||||
if('a' <= S[0] && S[0] <= 'z') S[0] -= ('a' - 'A');
|
||||
printf("%s\n",S);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
Loading…
x
Reference in New Issue
Block a user