백준 10870번: 피보나치 수 5

https://www.acmicpc.net/problem/10870

#include <iostream>
using namespace std;

int fib(int n)
{
	if (n == 0) { return 0; }
	else if (n == 1) { return 1; }
	else { return (fib(n-1) + fib(n-2)); }
}

int main()
{
	int N;
	cin >> N;
	cout << fib(N);
}

 

+ Recent posts