2812: 球弹跳高度的计算 摘要:``` #include using namespace std; double x,y,z,sum,h; int main(){ cin>>h; for( int i=1;i…… 题解列表 2023年11月13日 0 点赞 0 评论 114 浏览 评分:9.9
2812: 球弹跳高度的计算 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std ;int main (){ double h,sum; cin>>h; //输入初始高…… 题解列表 2023年02月03日 0 点赞 0 评论 492 浏览 评分:9.9
简单明了,通俗易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int h,i; double sum=0.0,H,a; scanf("%d",&h); …… 题解列表 2023年02月10日 0 点赞 1 评论 743 浏览 评分:9.9
题解 2812: 球弹跳高度的计算 (反弹与落地 示意图) 摘要:![题目中“第1/2/3/...次下落”与“第1/2/3/...次弹跳”的关系](/image_editor_upload/20240403/20240403063849_63902.jpg "题目中…… 题解列表 2024年04月03日 0 点赞 1 评论 205 浏览 评分:9.9
球弹跳高度的计算(小白专用,不要技巧,好理解) 摘要:解题思路:按照小球运动状态;注意事项:虽然路程需要*2;但是参考代码通过一次循环嵌套实现;参考代码:#include<math.h>int main(){ int i = 1; double m=0,…… 题解列表 2024年10月28日 0 点赞 0 评论 132 浏览 评分:9.9
java没写出来 摘要:参考代码:#include<iostream> using namespace std; int main() { double h; cin >> h; double res…… 题解列表 2024年01月12日 0 点赞 0 评论 49 浏览 评分:9.9
采购是我,我是才够 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double h; scanf("%lf",&h); doub…… 题解列表 2023年03月02日 0 点赞 0 评论 315 浏览 评分:9.9
球弹跳高度的计算C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int h; scanf("%d",&h); int i; double h1=h; double s=0; f…… 题解列表 2023年02月09日 0 点赞 1 评论 436 浏览 评分:5.3
2812: 球弹跳高度的计算 摘要:解题思路:注意事项:令人忍俊不禁参考代码:height=float(input())sum=-heightsum=float(sum)for i in range(1,11): sum=sum+…… 题解列表 2023年11月20日 0 点赞 0 评论 294 浏览 评分:4.7
球弹跳高度的计算 摘要:解题思路:注意事项:参考代码:h = float(input())s = hfor i in range(9): h = h/2 s += h*2print(f"{s:g}")print(…… 题解列表 2024年07月30日 0 点赞 0 评论 88 浏览 评分:0.0