hello,
I am a new java programmer, i am learning the basics at my school. I am using the program Jcreator and JDK 1.7
Scanner does not go blue, and i don't think the import is working, also when i build the code i get no errors, when i run it it says process completed but nothing comes up but the number 12? The program is still running i cannot rerun or rebuild it.
My code is the following
import java.io.*;
import java.util.*;
public class Tester
{
public static void main( String args[] )
{
Scanner kbReader = new Scanner(System.in);
System.out.print(12);
int i = kbReader.nextInt( );
System.out.println(3 * i);
}
}
plz help!!!!