package com.lee;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

public class Exam1 {

	public static void main(String[] args){

		System.out.println("입력하세요");

		InputStream is = System.in;

		try{//input ,output 기능은 모두 try에서 한다.
			int x=0;
			//read() : 한 바이트를 읽는다.
			while((x=is.read()) != -1){
				System.out.print((char)x);
			}
		}catch (IOException e) {
		}

		OutputStream os = System.out;
		int read=0;
		
		try {
			while((read = is.read()) != -1){
				os.write(read);
			}
		} catch (IOException e) {
		}
	}
}
//IO(Input,Output)
//InputStream () 예 : 파일을 읽을 때
//OutputSteam    예 : 파일을 만들 때



+ Recent posts