java while loop q to quit code example
Example: java while loop q to quit
while(!choice.equals("q")){
System.out.println("Enter a number or q to quit");
choice = input.next();
if(!choice.equals("q")){
int number = Integer.parseInt(choice);
}
}