From 360b2b06eeea78a69d5617157aaf8b2cc9e4b6ba Mon Sep 17 00:00:00 2001 From: WBryant05 <142913906+WBryant05@users.noreply.github.com> Date: Mon, 27 Oct 2025 13:25:31 -0500 Subject: [PATCH] Update Program.cs --- Console/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Console/Program.cs b/Console/Program.cs index 9be02228..4f63e12c 100644 --- a/Console/Program.cs +++ b/Console/Program.cs @@ -84,7 +84,7 @@ public static double Divide(string x, string y) // Implement this method following a similar pattern as above public static double Power(string x, string y) { - throw new NotImplementedException(); + return Math.Pow(double.Parse(x), double.Parse(y)); } }