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

HDU 2529 Shot (物理数学题)

时间:2014-06-28 10:17:39      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   get   2014   

题目

 

解题过程:

bubuko.com,布布扣

 

 

 

bubuko.com,布布扣
//物理数学题
#include<stdio.h>
#include<string.h>
#include<algorithm>
using namespace std;

int main()
{
    double h,l,v,ans;
    while(scanf("%lf%lf%lf",&h,&l,&v)!=EOF)
    {
        if(h==0&&l==0&&v==0)break;
        ans = h + v * v / 19.6 - 4.9 * l * l / v / v;
        printf("%.2lf\n",ans);
    }
    return 0;
}
View Code

 

HDU 2529 Shot (物理数学题),布布扣,bubuko.com

HDU 2529 Shot (物理数学题)

标签:style   blog   http   color   get   2014   

原文地址:http://www.cnblogs.com/laiba2004/p/3804197.html

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