Skip to content

Commit 5a29d4b

Browse files
committed
fix: 문제 이름 변경
1 parent 34f5f92 commit 5a29d4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/solved.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ void n_printing(int n) {
109109
}
110110

111111
void reverse_n_printing(int n) {
112-
std::cout << "=== 2742번 N 찍기 문제 해결 ===" << std::endl;
112+
std::cout << "=== 2742번 기찍 N 문제 해결 ===" << std::endl;
113113
std::cout << "입력 : n = " << n << std::endl;
114114
std::cout << "출력 : " << std::endl;
115115

@@ -127,7 +127,7 @@ void sum_from_one_to_n(int n) {
127127
sum += i;
128128
}
129129

130-
std::cout << "=== 8393번 합 문제 해결 ===" << std::endl;
130+
std::cout << "=== 8393번 1부터 n까지 합 문제 해결 ===" << std::endl;
131131
std::cout << "입력: n=" << n << std::endl;
132132
std::cout << "출력: " << std::endl;
133133

0 commit comments

Comments
 (0)