首页 > 代码库 > NYOJ题目97兄弟郊游问题
NYOJ题目97兄弟郊游问题
---------------------------
这种问题就是列方程,然后求解就可以了。
哥哥追上弟弟的时间:
(弟弟先跑的路程/哥哥比弟弟快出来的速度)
(哥哥追上弟弟的时间*狗的速度)
AC代码:
1 import java.util.Scanner; 2 3 public class Main { 4 5 public static void main(String[] args) { 6 7 Scanner sc=new Scanner(System.in); 8 9 int times=sc.nextInt();10 while(times-->0){11 int m=sc.nextInt();12 int x=sc.nextInt();13 int y=sc.nextInt();14 int z=sc.nextInt();15 16 double ans=(x*m)*1.0/(y-x)*z;17 System.out.printf("%.2f\n",ans);18 }19 20 }21 22 }
题目来源: http://acm.nyist.net/JudgeOnline/problem.php?pid=97
NYOJ题目97兄弟郊游问题
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。