杨宇成


私信TA

用户名:dotcpp0695443

访问量:342

签 名:

我是sb吴斌

等  级
排  名 863
经  验 3595
参赛次数 15
文章发表 4
年  龄 0
在职情况 学生
学  校 中山职业技术学院
专  业 大数据技术

  自我简介:

解题思路:
注意事项:主要注意要使用Math.ceil()向上取整
参考代码:

import java.util.Scanner;
public class Main {
   public static void main(String[] args) {
       Scanner sr = new Scanner(System.in);
       int n = sr.nextInt();//屋顶数
       int h, b;//屋顶坐标
       int r;//待救援人数
       double X;//每次救援时间
       double C;//每次救援的路程
       double count=0;//救援总时间
       for (int i = 1; i <= n ; i++) {
           h = sr.nextInt();
           b = sr.nextInt();
           r = sr.nextInt();
           C = Math.sqrt(h*h+b*b);
           X =(2.0 * C) /50+ r * 1.5;
           count=count+X;
       }
       System.out.println((int)Math.ceil(count));
       }
   }

 

0.0分

2 人评分

  评论区

  • «
  • »