강좌 [JAVA] java case is between
페이지 정보
본문
public static void main(String[] args) {
int num=(int)(Math.random() * 11);
if (isBetween(num, 1, 5)) {
System.out.println("testing case 1 to 5");
} else if (isBetween(num, 6, 10)) {
System.out.println("testing case 6 to 10");
}
}
public static boolean isBetween(int x, int lower, int upper) {
return lower <= x && x <= upper;
}
댓글목록
등록된 댓글이 없습니다.