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

习题4-8 高空坠球

时间:2019-05-21 12:58:25      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:落地   scanf   color   bsp   nbsp   ++   lse   初始   res   

 1 #include<stdio.h>
 2 
 3 int main()
 4 {
 5     int h, n, i;    //h初始化高度,n次落地;
 6     scanf_s("%d %d", &h, &n);
 7     double result, h1;
 8 
 9     if (n == 0)
10     {
11         result = 0;
12         h1 = 0;
13     }
14     else
15     {
16         result = h;        //在空中经过的总距离
17         h1 = h / 2.0;    //反弹的高度
18 
19         for (i = 1; i < n; i++)
20         {
21             result = result + h1 * 2;
22             h1 = h1 / 2;
23         }
24     }
25     
26     printf("%.1f %.1f", result, h1);
27 
28     return 0;
29 }

 

习题4-8 高空坠球

标签:落地   scanf   color   bsp   nbsp   ++   lse   初始   res   

原文地址:https://www.cnblogs.com/2018jason/p/10899063.html

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