Not getting desired output of print statement [closed]

Your program prints out the message “Enter a score…”, and then waits for and accepts an integer input, which is fine.

However, before the second iteration of the loop begins, your loop conditions checks whether the user has given another integer input before the message is printed for the second time, which is why the second iteration of your loop may begin only after you give some input to the program.

Hope this helps!

Leave a Comment