@@ -67,26 +67,19 @@ public class AssessmentPartThree {
//This section of the code creates a new instance of StringBuilder called encoded
StringBuilderencoded=newStringBuilder();
//The section of the code creates the int i and sets its value to 0. And then says for each time i is less than the length of the String theMessage run the code below and increment i by one
for(inti=0;i<theMessage.length();i++){
//this creates a char called letter and sets it to be equal to theMessage character at i
//i is used to work out the char of the message
//for example if the value of i is 2 then it will look for the character at 2 in the message
charletter=theMessage.charAt(i);
//This creates a new char called result and sets it to be equal to the result of the method enryptedCharacter
//this section of the code states that for each time letter within the character array it should run the code below
for(charletter:theMessage.toCharArray()){
//This section of code takes in the char letter and theOffset in order to run the method enryptedCharacter using these values