I have the following code:
System.out.println("");
System.out.println("SELECCIONE UN MODO PARA LA GENERACION DEL REPORTE:");
System.out.println("");
System.out.println("1. MENSUAL");
System.out.println("2. PERSONALIZADO");
System.out.println("");
System.out.println("SELECCIONE UNA OPCION: ");
I wish that when selecting an option (which is already configured through SWITCH) it can be seen in the following way on the screen:
SELECCIONE UNA OPCION: "aqui se digita la opcion"
Currently the cursor is below the text "SELECT AN OPTION".
How can I adjust the cursor so that it is in front of the text that I want? The app is developed in console mode, has no graphical interface.