C#有一对兔子,从出生后的第三个月起,每个月都生出一对小兔子,小兔子长到第三个月后每个月又生出一对兔子,假如兔子都活着,问第25个月的兔子总数的多少?

有一对兔子,从出生后的第三个月起,每个月都生出一对小兔子,小兔子长到第三个月后每个月又生出一对兔子,假如兔子都活着,问第25个月的兔子总数的多少?

 //Console.WriteLine("请输入月份");
            //int N = Convert.ToInt32(Console.ReadLine());
            //if (N < 3)
            //{
            //    Console.WriteLine("1对");
            //}
            //else
            {
            //    int[] arr = new int[10];
            //    for (int x = 0; x < 10; x++)
            //    {
            //        if (x == 0 || x == 1)
            //            arr[0] = arr[1] = 1;
            //        else
            //            arr[x] = arr[x - 2] + arr[x - 1];
            //        if (x + 1 == 10)
            //            Console.WriteLine("        " + arr[x] * 2);
            //    }
            //    Console.Write(10 + "月共");
            //    Console.WriteLine("                        只兔子");
            //}

你可能感兴趣的:(C#)