자료실

부자는 돈을 써서 시간을 아끼지만 가난한 사람은 시간을 써서 돈을 아낀다

JAVA

IT HUB를 찾아주셔서 감사합니다.

강좌 [JAVA] java case is between

페이지 정보

profile_image
작성자 하나를하더라도최선을
댓글 0건 조회 4,147회 작성일 19-10-25 12:22

본문

    public static void main(String[] args) {       
        int num=(int)(Math.random() * 11);
        if (isBetween(num, 15)) {
            System.out.println("testing case 1 to 5");
        } else if (isBetween(num, 610)) {
            System.out.println("testing case 6 to 10");
        }
    }
    public static boolean isBetween(int x, int lower, int upper) {
          return lower <= x && x <= upper;
    }

댓글목록

등록된 댓글이 없습니다.