ex)s or S 가 입력되면 종료되도록 작성
class A {
public static void main(String args[]) throws Exception {
int n;
while (true) {
n = System.in.read();
if ((char) n == 'S' || (char) n == 's') {
break;
}
System.out.println((char) n);
}
}
}
'개발하자 > JAVA중급' 카테고리의 다른 글
파일내용 읽어오기(한글) (0) | 2015.01.31 |
---|---|
파일내용 읽어오기(영어만가능) (0) | 2015.01.31 |
서버&클라이언트 부분 기본소스 (0) | 2015.01.30 |
랜덤 중복제거 (0) | 2015.01.30 |
awt 더블클릭 (0) | 2015.01.28 |