Recent Posts
Notice
No Rules Rules
재귀함수가 뭔가요? (feat. 백준, 17478번) 본문
728x90
반응형
재귀함수가 뭔가요?
https://www.acmicpc.net/problem/17478
반응형
// woohyeon.kim
// https://www.acmicpc.net/problem/17478
#include <iostream>
#include <string>
using namespace std;
int N;
void solution(int count) {
string str = "";
for (register int i = 0; i < count; ++i)
str += "____";
cout << str << "\"재귀함수가 뭔가요?\"" << "\n";
if (count == N) {
cout << str << "\"재귀함수는 자기 자신을 호출하는 함수라네\"" << "\n";
}
else {
cout << str << "\"잘 들어보게. 옛날옛날 한 산 꼭대기에 이세상 모든 지식을 통달한 선인이 있었어." << "\n";
cout << str << "마을 사람들은 모두 그 선인에게 수많은 질문을 했고, 모두 지혜롭게 대답해 주었지." << "\n";
cout << str << "그의 답은 대부분 옳았다고 하네. 그런데 어느 날, 그 선인에게 한 선비가 찾아와서 물었어.\"" << "\n";
solution(count + 1);
}
cout << str << "라고 답변하였지." << "\n";
}
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
cin >> N;
cout << "어느 한 컴퓨터공학과 학생이 유명한 교수님을 찾아가 물었다." << "\n";
solution(0);
return 0;
}
// *&)*@*
재귀함수에 따라 주어진 출력문을 출력하면 됩니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
하노이 탑 이동 순서 (feat. 백준, 11729번) (0) | 2022.08.01 |
---|---|
별 찍기 - 10 (feat. 백준, 2447번) (0) | 2022.08.01 |
피보나치 수 5 (feat. 백준, 10870번) (0) | 2022.08.01 |
팩토리얼 (feat. 백준, 10872번) (0) | 2022.08.01 |
골드바흐의 추측 (feat. 백준, 9020번) (0) | 2022.08.01 |
Comments