using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication28
{
class Program
{
static void Main(string[] args)
{
int faktoriyel;
Console.Write("Bir sayı giriniz : ");
int sayi = int.Parse(Console.ReadLine());
faktoriyel = 1;
for (int i = 1; i <= sayi; i++)
{
faktoriyel = 1;
for (int j = 1; j <= i; j++)
{
faktoriyel = faktoriyel * j;
}
Console.WriteLine (i + " sayısının faktöriyeli : " + faktoriyel+" Devam etmek için enter'a basın.. ");
Console.ReadKey();
}
}
}
}
SEARCH
SON PAYLAŞIMLAR
3-latest-65px
ETİKETLER
- 5. Sınıf 1. Dönem (8)
- 5. Sınıf BTY (8)
- 6. Sınıf BTY (1)
- Kişisel (3)
- Lise (9)
- Scratch (11)
- Üniversite - C# (39)
Hiç yorum yok:
Yorum Gönder