럿고의 개발 노트

[자바의 정석 3rd Edition] Chapter04. 조건문과 반복문 연습문제 풀이 본문

Java Note/자바의 정석 3rd Edition

[자바의 정석 3rd Edition] Chapter04. 조건문과 반복문 연습문제 풀이

KimSeYun 2020. 3. 4. 18:36

Chapter04. 연습문제

4-1. 다음의 문장들을 조건식으로 표현하라

  1. int x 10 20 true 형 변수 가 보다 크고 보다 작을 때 인 조건식
  2. char ch true 형 변수 가 공백이나 탭이 아닐 때 인 조건식
  3. char ch ‘x' ’X' true 형 변수 가 또는 일 때 인 조건식
  4. char ch 형 변수 가 숫자(‘0’~‘9’)일 때 인 조건식 true
  5. char ch ( ) true 형 변수 가 영문자 대문자 또는 소문자 일 때 인 조건식
  6. int year 400 4 100 형 변수 가 으로 나눠떨어지거나 또는 로 나눠떨어지고 으로 나눠떨어지지 않을 때 인 조건식 true
  7. boolean powerOn false true 형 변수 가 일 때 인 조건식
  8. str “yes” true 문자열 참조변수 이 일 때 인 조건식
public class Practice01 {
    public static void main(String[] args) {
        // 1
        int x = 15;
        System.out.println(x > 10 && x < 20);

        // 2
        char ch = 'a';
        System.out.println(!(ch == ' ' || ch=='\t'));

        // 3
        ch = 'x';
        System.out.println(ch == 'x' || ch == 'X');

        // 4
        ch = '0';
        System.out.println(ch >= '0' && ch <= '9');

        // 5
        ch = 'a';
        System.out.println((ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z'));

        // 6
        int year = 2000;
        System.out.println(year % 400 == 0 || year % 4 == 0 && year % 100 !=0);

        // 7
        boolean powerOn = false;
        System.out.println(!powerOn);

        // 8
        String str = "yes";
        System.out.println(str.equals("yes"));
    }
}

4-2. 1부터 20까지의 정수 중에서 2 또는 3의 배수가 아닌 수의 총합을 구하시오.

public class Practice02 {
    public static void main(String[] args) {
        int sum = 0;
        for (int i = 1; i <= 20; i++) {
            if (i % 2 != 0 || i % 3 != 0) {
                sum += i;
            }
        }
        System.out.println(sum);
    }
}

4-3. 1+(1+2)+(1+2+3)+(1+2+3+4)+...+(1+2+3+...+10)의 결과를 계산하시오.

public class Practice03 {
    public static void main(String[] args) {
        int sum = 0;
        for (int i = 1; i <= 10; i++) {
            for (int j = 1; j <= i; j++){
                sum += j;
            }
        }
        System.out.println(sum);
    }
}

4-4. 1+(-2)+3+(-4)+... 과 같은 식으로 계속 더해나갔을 때, 몇까지 더해야 총합이 100이상이 되는지 구하시오.

public class Practice04 {
    public static void main(String[] args) {
        int sum = 0;
        for (int i = 1;;i++) {
            if(i % 2 == 0){
                sum -= i;
            }else{
                sum += i;
            }
            if(sum >= 100){
                System.out.println(i);
                break;
            }
        }
    }
}

4-5. 다음의 for문을 while문으로 변경하시오.

public class Exercise4_5 {
    public static void main(String[] args) {
        for(int i=0; i<=10; i++) {
            for(int j=0; j<=i; j++)
                System.out.print("*");
            System.out.println();
        }
    } // end of main
} // end of class
public class Practice05 {
    public static void main(String[] args) {
        int i = 0;
        while (i <= 10) {
            int j = 0;
            while (j <= i) {
                System.out.print("*");
                j++;
            }
            System.out.println();
            i++;
        }
    }
}

4-6. 두 개의 주사위를 던졌을 때, 눈의 합이 6이 되는 모든 경우의 수를 출력하는 프로그램을 작성하시오.

public class Practice06 {
    public static void main(String[] args) {
        for (int i = 1; i <= 6; i++) {
            for (int j = 1; j <= 6; j++) {
                if (i + j > 6) {
                    break;
                } else if(i + j == 6){
                    System.out.println(i + " " + j);
                }
            }
        }
    }
}

4-7. Math.random()을 이용해서 1부터 6사이의 임의의 정수를 변수 value에 저장하는 코드를 완성하라.

public class Practice07 {
    public static void main(String[] args) {
        int value = (int)(Math.random() * 6) + 1;
        System.out.println(value);
    }
}

4-8. 방정식 2x+4y=10의 모든 해를 구하시오. 단, x와 y는 정수이고 각각의 범위는 0<=x<10, 0<=y<=10 이다.

public class Practice08 {
    public static void main(String[] args) {
        for (int x = 0; x < 11; x++) {
            for (int y = 0; y < 11; y++) {
                if (2 * x + 4 * y == 10) {
                    System.out.println("x = " + x + ", y = " + y);
                }
            }
        }
    }
}

4-9. 숫자로 이루어진 문자열 str이 있을 때, 각 자리의 합을 더한 결과를 출력하는 코드를 완성하라. 만일 문자열이 "12345"fkaus, '1+2+3+4+5"의 결과인 15를 출력이 출력되어야 한다.

public class Practice09 {
    public static void main(String[] args) {
        String str = "12345";
        int sum = 0;
        for (String number : str.split("")){
            sum += Integer.parseInt(number);
        }
        System.out.println("sum = " + sum);
    }
}

4-10. int num , 타입의 변수 이 있을 때 각 자리의 합을 더한 결과를 출력하는 코드를 완성하라 만일 변수 의 값이 라면 . num 12345 , ‘1+2+3+4+5’ 15 의 결과인 를 출력하라.

public class Practice10 {
    public static void main(String[] args) {
        int number = 12345;
        int sum = 0;

        while(number > 0){
            sum += number % 10;
            number /= 10;
        }
        System.out.println("sum = " + sum);
    }
}

4-11. 피보나치(Fibonnaci) 수열은 앞을 두 수를 더해서 다음 수를 만들어 나가는 수열이다. 예를 들어 앞의 두 수가 1과 1이라면 그 다음 수는 2가 되고 그 다음 수는 1과 2를 더해서 3이 되어서 1,1,2,3,5,8,13,21... 과 같은 식으로 진행된다. 1과 1부터 시작하는 피보나치수열의 10번째 수는 무엇인지 계산하는 프로그램을 완성하시오.

public class Practice11 {
    public static void main(String[] args) {
        int num1 = 1;
        int num2 = 1;
        int num3 = 0;

        System.out.print(num1 + "," + num2);

        for (int i = 0; i < 8; i++){
            num3 = num1 + num2;
            System.out.print(num3 +",");
            num1 = num2;
            num2 = num3;
        }
    }
}

4-12. 구구단의 일부분을 출력하시오.

public class Practice12 {
    public static void main(String[] args) {
        for (int i = 2; i < 8; i++) {
            for (int j = 1; j < 4; j++) {
                System.out.print(i + " * " + j + " = " + i * j + "\t");
            }
            System.out.println();
        }
    }
}

4-13. 주어진 문자열이 숫자인지를 판별하는 프로그램을 완성하시오.

public class Practice13 {
    public static void main(String[] args) {
        String value = "12o34";
        char ch = ' ';
        boolean isNumber = true;

        for (int i = 0; i < value.length(); i++) {
            ch = value.charAt(i);
            if(!(ch >= '0' && ch <='9')){
                isNumber = false;
                break;
            }
        }

        if(isNumber){
            System.out.println(value + "는 숫자입니다.");
        }else{
            System.out.println(value + "는 숫자가 아닙니다.");
        }
    }
}

4-14. 숫자 맞추기 게임을 만들자. 1과 100사이의 값을 반복적으로 입력해서 컴퓨터가 생각한 값을 맞추면 게임은 끝난다. 사용자가 값을 입력하면, 컴퓨터는 자신이 생각한 값과 비교해서 결과를 알려준다. 사용자가 컴퓨터가 생각한 숫자를 맞추면 게임이 끝나고 몇 번만에 숫자를 맞췄는지 알려준다.

import java.util.Scanner;

public class Practice14 {
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        int computerNumber = (int)(Math.random() * 100) + 1;
        int userNumber = 0;
        int trial = 0;
        while(userNumber != computerNumber){
            System.out.println("1과 100사이의 값을 입력하세요.");
            userNumber = scanner.nextInt();
            if(userNumber > computerNumber){
                System.out.println("더 작은 수를 입력하세요.");
            }else{
                System.out.println("더 큰수를 입력하세요.");
            }
            trial++;
        }
        System.out.println("맞췄습니다.\n시도횟수는 " + trial + "번입니다.");
    }
}

4-15. 회문수를 구하는 프로그램을 작성한다. 회문수(palindrome)란, 숫자를 거꾸로 읽어도 앞으로 읽는 것과 같은 수를 말한다. 예를 들면 '12321'이나 '13531'같은 수를 말한다.

public class Practice15 {
    public static void main(String[] args) {
        int number = 12321;
        int temp = number;

        int result = 0;

        while(temp !=0){
            result = result * 10 + temp % 10;
            temp /= 10;
        }

        if(number == result){
            System.out.println(number + "는 회문수 입니다.");
        }else{
            System.out.println(number + "는 회문수가 아닙니다.");
        }
    }
}

출처

Comments