Recent Posts
Notice
No Rules Rules
피보나치 수 5 (feat. 백준, 10870번) 본문
728x90
반응형
피보나치 수 5
https://www.acmicpc.net/problem/10870
// woohyeon.kim
// https://www.acmicpc.net/problem/10870
#include <iostream>
using namespace std;
int fibonacci(int n) {
if (n == 0)
return 0;
else if (n == 1)
return 1;
return fibonacci(n - 1) + fibonacci(n - 2);
}
int main() {
ios::sync_with_stdio(false), cin.tie(NULL);
register int N;
cin >> N;
cout << fibonacci(N) << "\n";
return 0;
}
// *&)*@*
피보나치 수열을 재귀함수로 만들 수 있는가 를 묻는 문제입니다.
728x90
반응형
'생활 > 코테' 카테고리의 다른 글
별 찍기 - 10 (feat. 백준, 2447번) (0) | 2022.08.01 |
---|---|
재귀함수가 뭔가요? (feat. 백준, 17478번) (0) | 2022.08.01 |
팩토리얼 (feat. 백준, 10872번) (0) | 2022.08.01 |
골드바흐의 추측 (feat. 백준, 9020번) (0) | 2022.08.01 |
베르트랑 공준 (feat. 백준, 4948번) (0) | 2022.07.31 |
Comments