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

UVa 10773 - Back to Intermediate Math

时间:2017-06-06 23:42:12      阅读:354      评论:0      收藏:0      [点我收藏+]

标签:注意   pop   速度   题目   dia   scan   for   post   水流   

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

分析:物理题,数学题。

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

说明:注意水流速度不能为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

标签:注意   pop   速度   题目   dia   scan   for   post   水流   

原文地址:http://www.cnblogs.com/tlnshuju/p/6953807.html

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