Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Nigel Sibbert #70

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions csharp-fundamentals-primitive-types.Main/Core.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Loading