RosettaCodeData/Task/Zero-to-the-zero-power/C-sharp/zero-to-the-zero-power.cs
2023-07-01 13:44:08 -04:00

13 lines
219 B
C#

using System;
namespace ZeroToTheZeroeth
{
class Program
{
static void Main(string[] args)
{
double k = Math.Pow(0, 0);
Console.Write("0^0 is {0}", k);
}
}
}