欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

NOI:3089 爬楼梯

程序员文章站 2024-03-15 08:38:41
...

题目链接:http://noi.openjudge.cn/ch0202/3089/

NOI:3089 爬楼梯


题解:因为每次都有两种走法,所以每次走都需要分别考虑两种走法的可能性数

#include <stdio.h>
#include <iostream>
using namespace std;
int pa(int p){
    if(p==1)return 1;
    if(p==2)return 2;
    
    return pa(p-1)+pa(p-2);
}
int main(){
    int n;
    while(cin>>n){
        int c=pa(n);
        cout<<c<<endl;
    }
}

相关标签: NOI