-
백준 17478 재귀함수가 뭔가요?PS 2021. 4. 6. 19:01
<코드>
#include <iostream> #include <algorithm> using namespace std; int n; void firstPrint(int dep) { int cnt = n - dep; for (int i = 0; i < cnt; i++) { cout << "____"; } } void Print(int dep) { if (dep == -1) return; firstPrint(dep); cout << "\"재귀함수가 뭔가요?\"" << '\n'; if (dep == 0) { firstPrint(dep); cout << "\"재귀함수는 자기 자신을 호출하는 함수라네\"" << '\n'; firstPrint(dep); cout << "라고 답변하였지." << '\n'; return; } firstPrint(dep); cout << "\"잘 들어보게. 옛날옛날 한 산 꼭대기에 이세상 모든 지식을 통달한 선인이 있었어." << '\n'; firstPrint(dep); cout << "마을 사람들은 모두 그 선인에게 수많은 질문을 했고, 모두 지혜롭게 대답해 주었지." << '\n'; firstPrint(dep); cout << "그의 답은 대부분 옳았다고 하네. 그런데 어느 날, 그 선인에게 한 선비가 찾아와서 물었어.\"" << '\n'; Print(dep - 1); firstPrint(dep); cout << "라고 답변하였지." << '\n'; } int main() { cin >> n; cout << "어느 한 컴퓨터공학과 학생이 유명한 교수님을 찾아가 물었다." << '\n'; Print(n); return 0; }
'PS' 카테고리의 다른 글
백준 1780번 종이의 개수 (0) 2021.04.08 백준 13171 A (0) 2021.04.06 백준 1629 곱셈 (0) 2021.04.06 백준 1992번 쿼드트리 (0) 2021.04.04 백준 11729번 하노이 탑 이동순서 (0) 2021.04.02