Skip to content
Advertisement

APCSP create task issue – Method ends program after being called [closed]

I am creating a short RPG game for my AP CSP project and for some reason when I call the method Element in line 310-313, it just ends the rest of the code in Main (which is all the remaining code in the program). The user is required to press x to continue the game but it skips all of that and auto-fills the user-inputs correctly. Put it short, once you select your element in the code, the program finishes the game by itself, which is not supposed to happen since the user needs to have its input to continue the dialogue.

Aforementioned, the intended output of this code is to complete the dialogue with the user input and user information only. Please help as this is due soon!

JavaScript

Advertisement

Answer

It looks like you stopped following the pattern that you applied in the beginning. As you’ll see, prior to line 310, you have used

JavaScript

Where you call the scanner to read a new line before checking the character. After line 310, you have stopped using the play = scan.nextLine(); which means the program won’t halt to wait for user input and will continue because player.charAt(0) will always equal x (or whatever the previous input was).

Find all the instances where you are checking for the character input and make sure you have called the nextLine()

Edit:

Just a word of advice as someone who’s had to mark first-year university projects.

  • Consider storing your dialogue in something like an array (especially in this case where the dialogue is very linear) and then using a while loop to iterate over it. Look up line separators for Java.
  • Consider what happens when the user doesn’t press “x” and how you would handle that correctly.
  • Add some developer comments on why you did something a certain way.
  • Look up the concept of DRY (don’t repeat yourself) and look at ways to improve your code in this fashion.
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement