球弹跳高度的计算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 评论 499 浏览 评分:5.3
简单明了,通俗易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int h,i; double sum=0.0,H,a; scanf("%d",&h); …… 题解列表 2023年02月10日 0 点赞 1 评论 802 浏览 评分:9.9
采购是我,我是才够 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double h; scanf("%lf",&h); doub…… 题解列表 2023年03月02日 0 点赞 0 评论 395 浏览 评分:9.9
老是对不准需要的类型,还是得多练练 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main() { int h,i; double sum = 0.0,r = 0.0,d=0.0; scanf…… 题解列表 2023年08月23日 0 点赞 1 评论 219 浏览 评分:0.0
编写题解 2812: 球弹跳高度的计算 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){int h;scanf("%d",&h);int i;double h1=h;double s=0;for(i=1…… 题解列表 2023年12月24日 0 点赞 0 评论 131 浏览 评分:0.0
2812 (C语言) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ double a,b,i,c=0; scanf("%lf", &a); b=a; for…… 题解列表 2024年03月18日 0 点赞 0 评论 129 浏览 评分:0.0
题解 2812: 球弹跳高度的计算 (反弹与落地 示意图) 摘要:{ int h,i; scanf("%d",&h); double h1=h,s=0.0; s=2.0*h1; fo…… 题解列表 2024年07月18日 0 点赞 0 评论 164 浏览 评分:0.0
球弹跳高度的计算 摘要:解题思路:注意事项:参考代码:h = float(input())s = hfor i in range(9): h = h/2 s += h*2print(f"{s:g}")print(…… 题解列表 2024年07月30日 0 点赞 0 评论 356 浏览 评分:0.0
球弹跳高度的计算(小白专用,不要技巧,好理解) 摘要:解题思路:按照小球运动状态;注意事项:虽然路程需要*2;但是参考代码通过一次循环嵌套实现;参考代码:#include<math.h>int main(){ int i = 1; double m=0,…… 题解列表 2024年10月28日 0 点赞 0 评论 221 浏览 评分:9.9