programming-examples/c-sharp/Mathematics/C# Program to Calculate Power of Three.cs

39 lines
828 B
C#
Raw Normal View History

2019-11-15 12:59:38 +01:00
/*
* C# Program to Calculate Power of Three
*/
using System;
class Program
{
static void Main(string[] args)
{
new GeneratePowers().RaiseToPower
(5, // 4 values per table
3);
Console.ReadLine();// power to raise each value
}
}
public class GeneratePowers
{
public void RaiseToPower(int maxIterations, int power)
{
Console.WriteLine("{0,8}{1,16}",
"Number", "Power of " + power);
for (int i = 1; i <= maxIterations; ++i)
{
Console.Write("{0,5}{1,15}\n", i,
Math.Pow(i, power));
}
}
}
/*
Number Power of 3
1 1
2 8
3 27
4 64
5 125