Algorithm/백준과 프로그래머스

[C++] 2193 : 이친수

young_3060 2022. 4. 12. 20:39
728x90

[ 구현 방법 ]

 

[ 코드 ]

#include <iostream>
#define sync ios::sync_with_stdio(false); cin.tie(NULL); cout.tie(NULL);
using namespace std;

void func() {
    int n;
    long binary[90];
    binary[0] = 1;
    binary[1] = 1;
    cin >> n;
    for(int i=2; i<n; i++) binary[i] = binary[i-1] + binary[i-2];

    cout << binary[n-1] << "\n";
}

int main() {
    func();
    return 0;
}
728x90

'Algorithm > 백준과 프로그래머스' 카테고리의 다른 글

[C++] 9012. 괄호  (0) 2023.07.14
[C++] 10828. 스택  (0) 2023.07.11
[C++] 2751. 수 정렬하기 2  (0) 2023.07.06
[C++] 11728 : 배열 합치기  (0) 2022.04.12
[C++] 5576번 콘테스트  (0) 2022.03.22