每日一练

每日一练,第1张

每日一练

package cn.itcast.girl.TheBlueCup_02;

import java.util.Scanner;

public class SavingsPlan {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        Scanner sc = new Scanner(System.in);
        int month[] = new int[13];
        int balance=0;//余额.
        int total=0;
//        int bankrupt;
        boolean flag = true;
        for(int i=1;i<=12;i++) {
            month[i] = sc.nextInt();
        }
        for(int i=1;i<=12;i++) {
            int difference = 300 - month[i];
            if(difference + balance < 0) {
                flag = false;
                System.out.println(-i);
                break;
            }else {
                int divide = (difference + balance)/100;
                balance = (difference + balance)%100;
                total += 100*divide;
            }
        }
        if(flag) {
            System.out.println((int)(total+total*0.2+balance));
        }
    }

}
 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5708786.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-17
下一篇 2022-12-17

发表评论

登录后才能评论

评论列表(0条)

保存