using System;
using System.Collections.Generic;
using System.Text;
namespace Tabelle
{
class Program
{
static void Main(string[] args)
{
//1
double quadrat, wurzel, kubus;
Console.WriteLine("Tabelle zu Wurzeln,Quartate und Kuben von 1 bis 20n");
Console.WriteLine("ZahltQuadrattKubustWurzel");
//2
for (int i = 1; i <= 20; i++)
{
quadrat = Math.Pow(i, 2);
wurzel = Math.Sqrt(i);
kubus = Math.Pow(i, 3);
//3
Console.WriteLine(i + "t" + quadrat + "t" + kubus + "t" + wurzel);
}
Console.Read();
}
}
}
|