[PCCE 기출문제] 4번 / 저축 Lv. 0

박영준·2024년 4월 4일
0

코딩테스트

목록 보기
298/300

해결법

방법 1

import java.util.Scanner;

public class Solution {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int start = sc.nextInt();
        int before = sc.nextInt();
        int after = sc.nextInt();

        int money = start;
        int month = 1;
        
        while (money < 70) {
            money += before;
            month++;
        }
        while (money < 100) {
            money += after;
            month++;
        }

        System.out.println(month);
    }
}

[PCCE 기출문제] 4번 / 저축

profile
개발자로 거듭나기!

0개의 댓글