using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{
// Rastgele 5 sayının karesini ve küpünü bulan program...
Random x = new Random();
for (int i = 1; i <= 5; i++)
{
int a = x.Next(1, 10);
Console.WriteLine("Karesi =" + Math.Pow(a, 2)); // Math.Pow üslü sayılar için kullanılıyor...
Console.WriteLine("Küpü =" + Math.Pow(a, 3));
Console.WriteLine();
}
Console.ReadKey();
}
}
}