Good day! This is my switch menu for a project in java! When I put a diferent letter (letter that it´s not in the switch) I get this error message, and when I try one of the correct letter I get the same error message again: This is my code: I tryed with numbers and I got the same error
Tag: do-while
Do-while loop doesn’t work for validating using a .equals method (Java) [closed]
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers. This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers. Closed 4 months ago. Improve this question
Trying to stop a Do-While Loop for an application
I’m creating an application for a homework, the problem is that I am trying to create a do-while loop to exit the application (Using the question “Do you want to exit (Y/N)”). To work with the do-while loop, I created a method to store the app and then called the method in the do-while loop, so that when I try
How to print number 1 to 10(in that sequence only)using loops(java) if int i = 10
Output must be 1 2 3 4 5 6 7 8 9 10 I have tried While loop but it prints from 10 to 1 Answer Assuming you must use i with an initial value of 10.
Remove break statement
I need to remove break; statements in my code and I’ve run out of ideas how to do it. Can you please help me? Answer
How to fill ant int array randomly with values from another integer array in Java?
I have an integer array with 40 integer values and need to put these randomly on into another integer array. I have a random number that chooses a random value from the first array, but if that specific integer has already been chosen, it has to pick a new random value, but that last part seems to bug for some
Password Checker in java with do while
I need to write a password checker which ensures that password correct. Firstly I prompt the user enter the password Secondly, I prompt the user to reenter the password thirdly, I need to check that the passwords are identical But this steps need to repeat 1 through 3 until password is correctly entered twice. Here is my code. But i