求小球落地5次后所经历的路程和第5次反弹的高度

xiaoxiao2021-03-01  22

假设一个球从任意高度自由落下,每次落地后反跳回原高度的一半; 再落下, 求它在第5次落地时,共经历多少米?第5次反弹多高? 

    /**      * 统计出第5次落地时,共经过多少米?      *       * @param high 球的起始高度      * @return 英文字母的个数      */     public static double getJourney(int high)     {         return 0;     }     /**      * 统计出第5次反弹多高?      *       * @param high 球的起始高度      * @return 空格的个数      */     public static double getTenthHigh(int high)     {         return 0;     }

输入描述:

输入起始高度,int型

输出描述:

分别输出第5次落地时,共经过多少米第5次反弹多高

#include<iostream> using namespace std; int main(){     int data;     while(cin >> data){         double sum = data;         double height = data;         for(int i = 2; i <= 5; ++i){             height /= 2;             sum += height * 2;                    }         cout << sum << endl << height/2 << endl;     }     return 0; }

转载请注明原文地址: https://www.6miu.com/read-4050067.html

最新回复(0)