博客
关于我
java 基础编程练习6
阅读量:713 次
发布时间:2019-03-21

本文共 558 字,大约阅读时间需要 1 分钟。

小乐乐走楼梯的方法数遵循斐波那契数列的规律。当n=1时,只有一种方法;当n=2时,有两种方法。对于更大的n,方法数等于前一阶楼梯的方法数加上第二阶楼梯的方法数,这正是斐波那契数列的定义。通过递归计算,我们可以得到小乐乐的方法数。

具体步骤如下:

  • 当n=1时,返回1。
  • 当n=2时,返回2。
  • 否则,递归调用fun(n-1)和fun(n-2)并相加返回结果。
  • 代码如下:

    public class Main {    public static void main(String[] args) {        Scanner in = new Scanner(System.in);        int n = in.nextInt();        System.out.print(fun(n));    }    private static int fun(int n) {        if (n == 1) {            return 1;        } else if (n == 2) {            return 2;        } else {            return fun(n - 1) + fun(n - 2);        }    }}

    转载地址:http://rbjrz.baihongyu.com/

    你可能感兴趣的文章
    PostgreSQL Daily Maintenance - cluster table
    查看>>
    PostgreSQL on Linux 最佳部署手册
    查看>>
    PostgreSQL Oracle 兼容性之 - pipelined
    查看>>
    PostgreSQL Point-In-Time Recovery (Incremental Backup)
    查看>>
    postgresql Streaming Replication监控与注意事项
    查看>>
    postgresql 不需要付费_使用数据传输在PostgreSQL执行 外部连接运算符
    查看>>
    postgresql 主从配置_生产环境postgresql主从环境配置
    查看>>
    postgresql 函数&存储过程 ; 递归查询
    查看>>
    PostgreSQL 分组聚合查询中 filter 子句替换 case when
    查看>>
    PostgreSQL 同步流复制锁瓶颈分析
    查看>>
    PostgreSQL 备份与还原命令 pg_dump
    查看>>
    Postgresql 外部表插件postgres_fdw的安装和使用
    查看>>
    PostgreSQL 如何从崩溃状态恢复(上)
    查看>>
    PostgreSQL 存储过程基本语法
    查看>>
    PostgreSQL 实现批量更新、删除、插入
    查看>>
    PostgreSQL 导入 .gz 备份文件
    查看>>
    PostgreSQL 批量插入&更新数据时报错(ERROR: ON CONFLICT DO UPDATE command cannot affect row a second time)
    查看>>
    PostgreSQL 新增数据返回自增ID
    查看>>
    postgresql 更新多列数据
    查看>>
    PostgreSQL 服务启动后停止
    查看>>