码迷,mamicode.com
首页 > 其他好文 > 详细

母牛的故事

时间:2020-03-04 22:35:10      阅读:100      评论:0      收藏:0      [点我收藏+]

标签:编程   stat   tin   多少   col   scan   scanner   现在   while   

 1 /*
 2 有一头母牛,它每年年初生一头小母牛。每头小母牛从第四个年头开始,每年年初也生一头小母牛。请编程实现在第n年的时候,共有多少头母牛?
 3 
 4 输入
 5 输入数据由多个测试实例组成,每个测试实例占一行,包括一个整数n(0<n<55),n的含义如题目中描述。
 6 n=0表示输入数据的结束,不做处理。
 7  */
 8 public class 母牛的故事 {
 9     public static void main(String[] args) {
10         Scanner scanner=new Scanner(System.in);
11         while(scanner.hasNext()){
12             int n=scanner.nextInt();
13             if (n==0){
14                 break;
15             }else {
16                 System.out.println(f(n));
17             }
18         }
19 
20     }
21     static int f(int n){
22         if (n==1)return 1;
23         if (n==2)return 2;
24         if (n==3)return 3;
25         return f(n-1)+f(n-3);//第n年牛个数等于第n-1加上n-3   因为n-3与n隔了四年
26     }
27 }

 

母牛的故事

标签:编程   stat   tin   多少   col   scan   scanner   现在   while   

原文地址:https://www.cnblogs.com/lang-zi/p/12416501.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!