From 6c995e852d99784325656a94da4d36363d690bec Mon Sep 17 00:00:00 2001 From: songyc macbook Date: Thu, 9 Apr 2026 20:21:33 +0900 Subject: [PATCH] baekjoon 20260409 --- code_study/Baekjoon/c/4458.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 code_study/Baekjoon/c/4458.c diff --git a/code_study/Baekjoon/c/4458.c b/code_study/Baekjoon/c/4458.c new file mode 100644 index 0000000..91eb7c1 --- /dev/null +++ b/code_study/Baekjoon/c/4458.c @@ -0,0 +1,16 @@ +#include + +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; +} \ No newline at end of file