diff --git a/csharp-fundamentals-primitive-types.Main/Core.cs b/csharp-fundamentals-primitive-types.Main/Core.cs index 9150d10..d38b736 100644 --- a/csharp-fundamentals-primitive-types.Main/Core.cs +++ b/csharp-fundamentals-primitive-types.Main/Core.cs @@ -11,10 +11,10 @@ public Core() { } public static int numThree = 32; // 1. Change the value of the member below to be the result of adding numOne and numTwo together - public int numOnePlusTwo = 0; + public int numOnePlusTwo = numOne + numTwo; // 2. Change the value of the member below to be the result of multiplying numThree by numTwo - public int numThreeTimesNumTwo = 0; + public int numThreeTimesNumTwo = numThree * numTwo; // 3. Change the value of the member below to be the result of dividing numThree by numOne public int numThreeDividedByNumOne = 0;