Stream.in : 표쥰 입력 스트림(객체) .read() : buffer안에서 데이터를 1byte씩 읽어 오는 메소드 e.g) import java.io.IOException; public class Test01 { public static void main(String[] args) throws IOException { System.out.print("정수 입력 : "); int su = 0; while(true) { int a = System.in.read(); if(a == 13) { break; } su *= 10; su += (a-48); // System.out.println(a); } buffer(버퍼) : 데이터의 처리속도, 단위, 시간 등이 서로 다른 두 장치나 프로그램 사이에서 데이..