IRCForumları - IRC ve mIRC Kullanıcılarının Buluşma Noktası

IRCForumları - IRC ve mIRC Kullanıcılarının Buluşma Noktası (https://www.ircforumlari.net/)
-   C# (https://www.ircforumlari.net/c/)
-   -   Console'de Faktoriyel Hesaplama (https://www.ircforumlari.net/c/430765-consolede-faktoriyel-hesaplama.html)

siLenceieuX 29 Kasım 2011 12:02

Console'de Faktoriyel Hesaplama
 
Kod:

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);
        }
   
    }
}



Tüm Zamanlar GMT +3 Olarak Ayarlanmış. Şuanki Zaman: 09:40.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
Search Engine Friendly URLs by vBSEO
Copyright ©2004 - 2025 IRCForumlari.Net Sparhawk