백준 10870번 피보나치수5 문제풀이


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



1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include<iostream>
 
using namespace std;
 
int fivo(int N)
{
    if (N == 0return 0;
    if (N == 1return 1;
    return fivo(N-1)+ fivo(N-2);
}
 
int main()
{
    int N;
    cin >> N;
 
    cout << fivo(N);
}
cs



+ Recent posts