Inside of method
new ProcessBuilder("cmd", "/c", "cls").inheritIO().start();
System.out.println("Press enter to continue...");
Back to main method Switch
System.out.println("Blah blah blah");
In both cases my program clears everything, leaving no text to tell the user what to do, but instead a blank terminal. I've also tried creating its own method, but it will still clear text before and after its execution.