13 lines
219 B
C#
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);
|
|
}
|
|
}
|
|
}
|