baekjoon 20260409

This commit is contained in:
songyc macbook 2026-04-09 20:21:33 +09:00
parent f530361b18
commit 6c995e852d

View 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;
}