public static void userKOR() {
Scanner sc = new Scanner(System.in);
System.out.println("static void userKOR()함수");
int kor ;
while (true) {
System.out.print("원하는 국어점수 입력 : ");
try {
//kor = sc.nextInt();
//kor = (int)sc.nextLine();
kor = Integer.parseInt(sc.nextLine());
break;
} catch (Exception e) {
System.out.println("숫자를 입력하세요!");
}
}
System.out.println("입력받은 국어 점수는 " + kor + "입니다.");
System.out.println("오늘은 목요일");
}
'개인 공부방 > JAVA' 카테고리의 다른 글
자바 간단한 파일 input 프로그램 (0) | 2011.11.18 |
---|---|
자바 메인함수에서 내부클래스 객체 생성 불가 (0) | 2011.11.18 |
자바 로또생성기 랜덤함수 (0) | 2011.11.18 |
자바 구구단 출력하기-Scanner 이용 (0) | 2011.11.18 |
자바, 이클립스에서 소수점 자릿수대로 출력하기 (0) | 2011.11.18 |