题解 | #爬楼梯#

爬楼梯

https://www.nowcoder.com/practice/b178fcef3ed4448c99d7c0297312212d

import java.util.Scanner;
import java.math.BigInteger;
import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        while (scanner.hasNext()) {
            int stepCount = scanner.nextInt();
            System.out.println(climeStep(new BigInteger(String.valueOf(stepCount))));
        }
    }

    public static BigInteger climeStep(BigInteger stepCount) {
        if (stepCount.intValue() == 1) {
            return new BigInteger("1");
        }
        if (stepCount.intValue() == 2) {
            return new BigInteger("2");
        }

        BigInteger step[] = new BigInteger[stepCount.intValue()];
        step[0] = new BigInteger("1");
        step[1] = new BigInteger("2");

        for (int i = 2; i < stepCount.intValue(); i++) {
            step[i] = step[i - 1].add(step[i - 2]);
        }

        return step[stepCount.intValue() - 1];
    }
}

全部评论

相关推荐

菜菜咪:1. 可以使用简历网站的模版,美观度会更好一点 2. 邮箱可以重新申请一个,或者用qq邮箱的别名,部分hr可能会不喜欢数字邮箱 3. 项目经历最好分点描述,类似的项目很多,可以参考一下别人怎么写的 4. 自我评价可加可不加,技术岗更看重技术。最后,加油,优秀士兵
点赞 评论 收藏
分享
评论
1
3
分享
牛客网
牛客企业服务