29 Kasım 2011, 12:02
|
#1 |
Çevrimdışı
Kullanıcıların profil bilgileri misafirlere kapatılmıştır.
| Console'de Faktoriyel Hesaplama
Kod: Kodu kopyalamak için üzerine çift tıklayın! using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Faktoriyel
{
class Program
{
static void Main(string[] args)
{
Console.Write("Bir sayı gir : ");
int sayi = Convert.ToInt32(Console.ReadLine());
int sonuc = Faktoriyel(sayi);
Console.WriteLine(sayi + "Faktoriyel : " + sonuc.ToString());
Console.ReadLine();
}
static int Faktoriyel(int sayi);
{
if (sayi == 0) return 1;
return sayi * Faktoriyel(sayi - 1);
}
}
} |
| |