Posts by KalebeMtos • 51 points
1 post
-
5
votes3
answers89
viewsA: Redo the method instruction
Try this: while (choise.equals("y")){ println("Exit?"); choise = scan.next(); if(choise.equals("y")){ System.Exit(0); } else if(choise.equals("n")){ /* ???? */ } else{ ... } } Or you can use another…
javaanswered KalebeMtos 51