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

Java编程计算兔子生兔子的问题

程序员文章站 2024-03-05 21:29:49
程序分析: 兔子的规律为数列1,1,2,3,5,8,13,21.... 程序设计: public class exp2{ public static vo...

程序分析: 兔子的规律为数列1,1,2,3,5,8,13,21....

程序设计:

public class exp2{
  public static void main(string args[]){
    int i=0;
    for(i=1;i<=20;i++)
      system.out.println(f(i));
  }
  public static int f(int x)
  {
    if(x==1 || x==2)
      return 1;
    else
      return f(x-1)+f(x-2);
  }
}

public class exp2{
  public static void main(string args[]){
    int i=0;
    math mymath = new math();
    for(i=1;i<=20;i++)
      system.out.println(mymath.f(i));
  }
 
}
class math
{
  public int f(int x)
  {
    if(x==1 || x==2)
      return 1;
    else
      return f(x-1)+f(x-2);
  }
}