[Solved] Why does System.out.println(String) not print anything?
[ad_1] What you might want to do is set your logic more like: System.out.println(“Press 1 for xx, 2 for xx, or 3 for xx”); if(scanner.hasNext()){ choice = scanner.Int(); } if(choice == 1){ //do whatever; } else if(choice == 2){ //do whatever; } I might not be understanding your question right but I think you need … Read more