C# Faktöriyel Hesaplama
C# Faktöriyel Hesaplama Programı
[csharp]using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace Faktoriyel_bulma
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
int sayi,sonuc=1;
sayi = Convert.ToInt32(textBox1.Text);
for (int i = 1; i <= sayi; i++)
{
sonuc *= i;
}
textBox2.Text=sonuc.ToString();
}
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
System.Diagnostics.Process.Start("www.technoprogram.com");
}
}
}
[/csharp]
Dosya boyutu : 50 Kb
Virustotal Sonuçları : 0 / 51 Temiz
Rar şifresi : www.technoprogram.com
C# Faktöriyel Hesaplama Projesini İndir
İndirmek için tıklayın
Not:Reklamı geç butonuna tıkladıktan sonra indirme otomatik olarak başlayacaktır.