Introfor

[백준] 10870번 / 피보나치 수 5 본문

Programming_prob/BaekJoon

[백준] 10870번 / 피보나치 수 5

YongArtist 2020. 7. 1. 01:26
#include <iostream>

int fibonacci(int n){
	if(n < 2)
		return n;
	else
		return fibonacci(n-1) + fibonacci(n-2);
}

int main(){
	int N = 0;
	int answer = 0;
	scanf("%d", &N);
	
	for(int i=0; i<N+1; i++)
		answer = fibonacci(i);

	printf("%d", answer);
	return 0;
}

2017/09/18 - [Doing/C&C++] - 피보나치(반복, 재귀)

'Programming_prob > BaekJoon' 카테고리의 다른 글

[백준] 9093번 stack  (0) 2020.09.09
[백준] 10953번 / A+B - 6  (0) 2020.07.03
[백준] 10872번 / 팩토리얼  (0) 2020.07.01
[백준] 2750, 2751, 10989번 / 수 정렬하기1, 2, 3  (0) 2020.06.29
1000번  (0) 2019.07.05
Comments