[JAVA] 키보드로 입력 쉽게 받기 기억해 두어야지. 자바에서 입력 쉽게 받기. import java.util.*; class Test { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int i = sc.nextInt(); System.out.println(i); } } 프로그래밍 TIP/JAVA 2008.07.10