码迷,mamicode.com
首页 > 其他好文 > 详细

UVa 10773 - Back to Intermediate Math

时间:2014-10-18 12:38:58      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:blog   io   for   sp   2014   问题   log   amp   时间   

题目:渡河问题,给你河水宽度,水流速度,求垂直渡河与最快渡河的时间差。

分析:物理题,数学题。

               最快渡河情况,传垂直运动,垂直渡河,船的水平分速度和水流速度抵消。

说明:注意水流速度不能为0。

#include <cstdio>
#include <cmath>

int main()
{
	int T;
	scanf("%d",&T);
	for (int t = 1 ; t <= T ; ++ t) {
		double d,v,u;
		scanf("%lf%lf%lf",&d,&v,&u);

		printf("Case %d: ",t);
		if (u > v && v)
        	printf("%.3lf\n",d/sqrt(u*u-v*v)-d/u);
		else printf("can't determine\n");
	}
	return 0;
}


UVa 10773 - Back to Intermediate Math

标签:blog   io   for   sp   2014   问题   log   amp   时间   

原文地址:http://blog.csdn.net/mobius_strip/article/details/40210285

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!