From 0675bdf81662abd458dd0b23c51bd48a292f7291 Mon Sep 17 00:00:00 2001 From: SSDKLH Date: Wed, 31 Mar 2021 18:54:10 -0500 Subject: [PATCH 1/3] 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 b3fcdf6a..d33df39b 100644 --- a/Console/Program.cs +++ b/Console/Program.cs @@ -78,7 +78,7 @@ public static double Multiply(string x, string y) } public static double Divide(string x, string y) { - return double.Parse(x) / double.Parse(y); + return 100; } // Implement this method following a similar pattern as above From c2423ab7586a18883f82220a220be592a8b82eb7 Mon Sep 17 00:00:00 2001 From: SSDKLH Date: Wed, 31 Mar 2021 18:56:52 -0500 Subject: [PATCH 2/3] 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 d33df39b..7eaac302 100644 --- a/Console/Program.cs +++ b/Console/Program.cs @@ -70,7 +70,7 @@ public static double Add(string x, string y) public static double Subtract(string x, string y) { - return double.Parse(x) - double.Parse(y); + return double.Parse(x) - double.Parse(y) } public static double Multiply(string x, string y) { From b86baa7b9a72359841cd654d26812b5604f0cea6 Mon Sep 17 00:00:00 2001 From: SSDKLH Date: Wed, 31 Mar 2021 18:58:19 -0500 Subject: [PATCH 3/3] 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 7eaac302..e5115d58 100644 --- a/Console/Program.cs +++ b/Console/Program.cs @@ -70,7 +70,7 @@ public static double Add(string x, string y) public static double Subtract(string x, string y) { - return double.Parse(x) - double.Parse(y) + } public static double Multiply(string x, string y) {