using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace rabbit
{
class Program
{
static void Main(string[] args)
{
for (int i = 1; i <= 13; i++)
{
int j = Test(i);
if (i == 1)
{
Console.WriteLine("开始有{0}对兔子", j);
}
else
{
Console.WriteLine("{0}月后有{1}对兔子", i - 1, j);
}
}
Console.ReadLine();
}
public static int Test(int i)
{
if(i<=2)
{
return 1;
本内容试读结束,登录后可阅读更多
下载后可阅读完整内容,剩余2页未读,立即下载
- 1
- 2
前往页