c# Dögüsüz Faktöriyer Hesaplama(Goto)

ebubekirbastama
17-05-2013, 16:19   |  #1  
ebubekirbastama avatarı
OP Taze Üye
Teşekkür Sayısı: 0
10 mesaj
Kayıt Tarihi:Kayıt: Mar 2013

Hiç Bir yerde Yok ::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace goto_ödev
{
    class Program
    {
        static void Main(string[] args)
        {
           
            int fatör = 1;
            Console.WriteLine("Bir Sayı Giriniz");
            int s1 = int.Parse(Console.ReadLine());
            git:
            if (s1 == 0)
            {
                goto son;
            }
            else
            {
                fatör = fatör * s1;
                s1 = s1 - 1;
                goto git;
                       
            }
        son: Console.WriteLine(fatör );
        }
    }
}
Coder:By&Ebubekir Bastama...