Hi,
I have the following code in a loop:
System.out.println("What is the name of the department?");
s_Temp = input.nextLine();
The first time the command is executed, it works properly. Subsequent executions cause the 2nd line to be skipped and s_Temp becomes an empty string.
Anyone know why?
Russ