-
56번 재귀함수인프런 알고리즘테스트 문제 2020. 10. 4. 14:40
#include<iostream> using namespace std; void routine(int r) { if (r < 1) { return; } routine(r - 1); cout << r << endl; } int main() { int n = 0; cin >> n; routine(n); }
'인프런 알고리즘테스트 문제' 카테고리의 다른 글
58번 dfs 알고리즘 (0) 2020.10.04 57번 재귀함수 (0) 2020.10.04 알고리즘 문제 복습(10~20번) (0) 2020.09.19 42번 이분검색 알고리즘 (0) 2020.09.18 41번 알고리즘 (0) 2020.09.18