注意循环的次数,手动拆解下落地的精确距离怎么表示 摘要:注意事项:i循环的次数参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int h;…… 题解列表 2024年12月05日 0 点赞 0 评论 77 浏览 评分:0.0
利用数学思维和for循环来解答,清晰明了 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,h; double S=0,s,H; scanf("%d",&h); H=h…… 题解列表 2024年11月26日 0 点赞 0 评论 89 浏览 评分:0.0
没有太多解释的代码 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main ( ){ double h ,h1 ,h2 ,h3 ; doub…… 题解列表 2024年11月08日 0 点赞 0 评论 63 浏览 评分:0.0
球弹跳高度的计算(小白专用,不要技巧,好理解) 摘要:解题思路:按照小球运动状态;注意事项:虽然路程需要*2;但是参考代码通过一次循环嵌套实现;参考代码:#include<math.h>int main(){ int i = 1; double m=0,…… 题解列表 2024年10月28日 0 点赞 0 评论 132 浏览 评分:9.9
球弹跳高度的计算 摘要:解题思路:注意事项:参考代码:h = float(input())s = hfor i in range(9): h = h/2 s += h*2print(f"{s:g}")print(…… 题解列表 2024年07月30日 0 点赞 0 评论 87 浏览 评分:0.0
编写题解 2812: 球弹跳高度的计算 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int h,i; scanf("%d",&h); double h1=h,s=0.0; s=2.0*h1; fo…… 题解列表 2024年07月18日 0 点赞 0 评论 82 浏览 评分:0.0
球弹跳高度 摘要:解题思路:累加高度注意事项:参考代码:h=int(input())m=hfor i in range(10): m=m+h h=h/2print('%g'%m)print(…… 题解列表 2024年07月09日 0 点赞 0 评论 74 浏览 评分:0.0
题解 2812: 球弹跳高度的计算 (反弹与落地 示意图) 摘要:![题目中“第1/2/3/...次下落”与“第1/2/3/...次弹跳”的关系](/image_editor_upload/20240403/20240403063849_63902.jpg "题目中…… 题解列表 2024年04月03日 0 点赞 1 评论 204 浏览 评分:9.9
2812 (C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double a,b,i,c=0; scanf("%lf", &a); b=a; for…… 题解列表 2024年03月18日 0 点赞 0 评论 84 浏览 评分:0.0
2812: 球弹跳高度的计算 摘要:参考代码:h = int(input()) sum = h for i in range(10): h /= 2 if i != 9: sum += h  题解列表 2024年03月17日 0 点赞 0 评论 287 浏览 评分:0.0