class aa
{
public static void main(String[] args)
{
int a=0; //여기에 a 선언 이유는 if에서 사용하기 때문
try {
a = Integer.parseInt(args[0]);
} catch (NumberFormatException e) { //여기에서 예외가 발생합니다.
// TODO: handle exception
System.out.print("숫자가 아닙니다.");//예외처리 내용
System.exit(0);
}
if(a >= 0)
for(int i=0;i<=a;i++){
i += 0;
System.out.println(i + "입니다");
}
}
}
2008년 7월 5일 토요일
피드 구독하기:
댓글 (Atom)
-
댓글 없음:
댓글 쓰기