using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace denemee
{
class Program
{
static void Main(string[] args)
{
int sayi, say=2, a=2, b=3,c=0;
Console.WriteLine("1. Ayda 2, 2.Ayda 3 Tavşan Olduğu Var Sayılıyor.");
Console.Write("Ay Girin= ");
int.TryParse(Console.ReadLine(), out sayi);
for (int i = 0; i < sayi; i++)
{
if (say < sayi)
{
c = a + b;
say++;
a = b;
b = c;
}
}
Console.Write("\n" + sayi + ". Ayda Tavşan Sayısı " + c + " Olur");
Console.ReadKey();
}
}
}
0 yorum:
Yorum Gönder