南办


私信TA

用户名:dotcpp0712804

访问量:211

签 名:

等  级
排  名 2105
经  验 2448
参赛次数 0
文章发表 9
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

import java.util.Scanner;

public class Main {
   public static void main(String[] args) {
       Scanner input=new Scanner (System.in);
       int n = 7; // 一周
       int[]d = new int[n+1]; // 一周 时长总和
       for (int i = 1; i < n + 1; i ++) {
           d[i] = input.nextInt() + input.nextInt();
       }
       int max = 0; // 通过下标记录位置
       for (int i = 1; i < n + 1; i ++) {
           if (d[i] > 8){
               if(max == 0)
                   max = i;
               if(d[max] < d[i])
                   max = i;
           }
           if(i == n){
               if(max == 0)
                   System.out.print(0);
               if(max != 0)
                   System.out.print(max);
           }
       }
   }
}

 

0.0分

0 人评分

  评论区

  • «
  • »