I've been using Eclipse on a few computers recently, and since using it on my home computer, have found that it doesn't automatically import java.util.* or java.util.Scanner after declaring a Scanner class in my code.
In my code, I type something like:
Scanner sc = new Scanner(System.in);
... and in the past, Eclipse would add the import java.util.Scanner
or import java.util.*
line above my class.
Any idea how I could get the program to do this for me? I know it's a very insignificant thing, but everything I learn about Eclipse or programming makes me a stronger programmer.