class Program
{
static void Main()
{
int boyut;
Console.Write("Boyut Belirtin:");
int.TryParse(Console.ReadLine(), out boyut);
int[] a1 = new int[boyut];
int[] a2 = new int[boyut];
int[] a3 = new int[boyut];
int[] a4 = new int[boyut];
for (int i = 0; i < boyut; i++)
{
a1[i] = i;
a3[i] = 1;
a4[i] = 1;
for (int j = 1; j <= i; j++)
{
a2[i] += j;
a3[i] *= j;
a4[i] *= i;
}
}
Console.WriteLine("----------------------------");
Console.WriteLine("i :i+ :i! :i^i ");
Console.WriteLine("----------------------------");
for (int i = 0; i < boyut; i++)
{
Console.WriteLine("{0,-5}:{1,-5}:{2,-8}:{3,-10}", a1[i], a2[i], a3[i], a4[i]);
}
Console.ReadLine();
}
}
0 yorum:
Yorum Gönder