System.in을 이용해서 키보드로부터 입력받기 System.in은 InputStrream 형식이라고 했다. 이는 InputStream에 있는 모든 메소드를 사용할 수 있다. import java.io.*; public class SystemInputTest { public static void main(String[] args) { int i = 0; try { while((i = System.in.read()) != -1){ System.out.write(i); } // while문 종료 } catch (IOException e) { System.out.println(e); } } // main 메소드 종료 } while((i = System.in.read()) != -1){ …… } // whil..