题解 | #求小球落地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")

全部评论

相关推荐

联通 技术人员 总包不低于12
点赞 评论 收藏
分享
11-08 13:58
门头沟学院 Java
程序员小白条:竟然是蓝桥杯人才doge,还要花钱申领的offer,这么好的公司哪里去找
点赞 评论 收藏
分享
头像
11-09 17:30
门头沟学院 Java
TYUT太摆金星:我也是,好几个华为的社招找我了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务