[Solved] Java; Initializing A Count of Input, After Period Is Entered
Your count variable is named Q. You increment it on each loop in the increment statement Q = Z + y Where you have Z = text.length(); and y = user.length(); Now, since you don’t add those value to the previous Q value, you simply have Z + y so you only get the length … Read more