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

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

https://www.nowcoder.com/practice/2f6f9339d151410583459847ecc98446

#include <cstdio>
#include <iostream>
using namespace std;

int main() {
    double height;
    cin >> height;

    double bounce = 0;
    double count = 0;
    double all = 0;

    while(count < 5){
        all += height;
        bounce = height/2;
        all += bounce;
        height = bounce;
        count++;
    }
    printf("%.6lf\n", all-height);
    printf("%.6lf", height);
}
// 64 位输出请用 printf("%lld")

全部评论

相关推荐

点赞 评论 收藏
分享
劝退式:感觉有人回才是不正常的
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务