壮Sir不壮


私信TA

用户名:dotcpp0692568

访问量:939

签 名:

等  级
排  名 1372
经  验 2941
参赛次数 0
文章发表 17
年  龄 0
在职情况 学生
学  校 河南科技学院
专  业

  自我简介:

解题思路:

注意事项:

参考代码:


import java.util.Scanner;

public class Test {
   public static void main(String[] args){
       Scanner scanner = new Scanner(System.in);

       int motherStore = 0;//存到妈妈那里的钱
       int have = 0;//自己身上现有的钱

       for (int i = 1;i<=12;i++) {
           int n = scanner.nextInt();


           have += (300-n);

           while (have >= 100){
               have-=100;
               motherStore += 100;
           }

           if (have < 0) {//钱数小于0时,直接退出main()
               System.out.println(-1 * i);
               return;
           }

       }


       System.out.printf("%.0f", (have+motherStore * 1.2));

   }
}


 

0.0分

0 人评分

  评论区

  • «
  • »