Kodları:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
int a = 0;
int b = 1;
int adet;
Console.Write("Kaç adet fibonacci sayısı görüntülemek istiyorsunuz= ");
adet = Convert.ToInt32(Console.ReadLine());
Console.Write(a + " " + b + " ");
for (int i = 3; i <= adet; i++)
{
int c = a + b;
Console.Write(c + " ");
a = b;
b = c;
}
Console.ReadLine();
}
}
}
Hazırlayan:Adil AYGÜN
Hiç yorum yok:
Yorum Gönder