From d625d16feb92f75e7a240498beb7f789c0fb58ad Mon Sep 17 00:00:00 2001 From: Linda Do Date: Tue, 5 Aug 2025 12:54:10 +0200 Subject: [PATCH 1/2] completed --- .../java/com/booleanuk/core/Exercise.java | 28 +++++++++---------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/main/java/com/booleanuk/core/Exercise.java b/src/main/java/com/booleanuk/core/Exercise.java index 8125ead..e37ed09 100644 --- a/src/main/java/com/booleanuk/core/Exercise.java +++ b/src/main/java/com/booleanuk/core/Exercise.java @@ -8,39 +8,39 @@ public class Exercise extends ExerciseBase { // 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 = 24; // 2. Change the value of the member below to be the result of multiplying numThree by numTwo - public int numThreeTimesNumTwo = 0; + public int numThreeTimesNumTwo = 512; // 3. Change the value of the member below to be the result of dividing numThree by numOne - public int numThreeDividedByNumOne = 0; + public int numThreeDividedByNumOne = 4; // 4. Change the value of the member below to be the result of subtracting numOne from numThree - public int numThreeMinusNumOne = 0; + public int numThreeMinusNumOne = 24; // 5. Change the value of the member below to be the sum of numOne, numTwo and numThree - public int sum = 0; + public int sum = 56; // 6. Change the value of the member below to be the sum of numOne, numTwo and numThree divided by numOne - public int numBytes = 0; + public int numBytes = 7; // 7. Create a public char member named lastLetter containing the last letter of the English alphabet - + public char lastLetter = 'Z'; // 8. Create a public float member named pi that contains the value of pi to two decimal places - + public float pi = 3.14f; // 9. Create a public double member named piD that contains the value of pi to 5 decimal places - + public double piD = 3.14159d; public String alphabet = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; @@ -48,26 +48,26 @@ public class Exercise extends ExerciseBase { public String lastName = "Smith"; // 10. Create a public member named fullName that contains the value of firstName and lastName concatenated together with a space in between - + public String fullName = firstName + " " + lastName; // 11. Create a public char member named tenthLetter that contains the tenth letter in the alphabet member above. // If you need help, here's some documentation: https://www.w3schools.com/java/ref_string_charat.asp - + public char tenthLetter = 'J'; // 12. Create a public string member named lowerAlphabet that contains the value of the alphabet member in all lower case characters // If you need help, look through the available String methods to find a relevant one here: https://www.w3schools.com/java/java_ref_string.asp - + public String lowerAlphabet = alphabet.toLowerCase(); // 13. Create a public integer member named alphabetLength that contains the number of characters that exist in the alphabet member // Use the documentation linked above if you need help - + public int alphabetLength = alphabet.length(); // 14. Create a public integer member named remainder that contains the remainder of dividing 15 by 8 - + public int remainder = 15 % 8; } From dad81402ef783b8d6ac6a16d7b5518e35aa6e2f6 Mon Sep 17 00:00:00 2001 From: Linda Do Date: Tue, 5 Aug 2025 12:56:28 +0200 Subject: [PATCH 2/2] completed --- src/main/java/com/booleanuk/core/Exercise.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/com/booleanuk/core/Exercise.java b/src/main/java/com/booleanuk/core/Exercise.java index e37ed09..bcae591 100644 --- a/src/main/java/com/booleanuk/core/Exercise.java +++ b/src/main/java/com/booleanuk/core/Exercise.java @@ -8,27 +8,27 @@ public class Exercise extends ExerciseBase { // 1. Change the value of the member below to be the result of adding numOne and numTwo together - public int numOnePlusTwo = 24; + 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 = 512; + 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 = 4; + public int numThreeDividedByNumOne = numThree/numOne; // 4. Change the value of the member below to be the result of subtracting numOne from numThree - public int numThreeMinusNumOne = 24; + public int numThreeMinusNumOne = numThree - numOne; // 5. Change the value of the member below to be the sum of numOne, numTwo and numThree - public int sum = 56; + public int sum = numOne + numTwo + numThree; // 6. Change the value of the member below to be the sum of numOne, numTwo and numThree divided by numOne - public int numBytes = 7; + public int numBytes = (numOne + numTwo + numThree)/numOne ; // 7. Create a public char member named lastLetter containing the last letter of the English alphabet