: [编程入门]自由下落的距离计算 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,i; float m,sum; scanf("%f%d",&m,&n); s…… 题解列表 2024年11月24日 0 点赞 1 评论 113 浏览 评分:9.9
[编程入门]自由下落的距离计算 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ float i,M,N,c,d; scanf("%f %f",&M,&N); for(i=1;…… 题解列表 2024年11月18日 0 点赞 0 评论 58 浏览 评分:0.0
1019: [编程入门]自由下落的距离计算(简单的解法) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i; double n,m,k=0,num=0; scanf("%lf %lf",&m…… 题解列表 2024年11月15日 0 点赞 0 评论 69 浏览 评分:0.0
高中不会的题现在终于解决了!! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int i; float a,b,m,n; scanf("%f…… 题解列表 2024年11月13日 0 点赞 0 评论 51 浏览 评分:0.0
最简单易懂的解法{1019} 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ double M,N,h=0,H=0; scanf("%lf%lf",&M,&N); for…… 题解列表 2024年11月10日 0 点赞 0 评论 63 浏览 评分:0.0
1019: [编程入门]自由下落的距离计算(用了一点点C语言) 摘要:解题思路:注意事项:参考代码:#include <iostream>#include <cmath>using namespace std; int main(){ double m,n; …… 题解列表 2024年11月06日 0 点赞 1 评论 165 浏览 评分:2.0
c语言,非常简单的, 摘要:解题思路:a/2算反弹高度 同时a/2后乘以2为单次经历的路程注意事项:参考代码:#include<stdio.h>int main(){ double a,b,i,t,sum=0; …… 题解列表 2024年11月01日 0 点赞 0 评论 83 浏览 评分:9.9
简单的数学思想 摘要:解题思路:这是一道简单的数学编程题,根据题意,我们可以知道,第n次的高度=初始高度/2的n次方;经过的路径=n-1次小球运动的路径,又因为每一次小球运动的路径=前一次运动路径的一半(n>=1),所以设…… 题解列表 2024年09月05日 0 点赞 0 评论 89 浏览 评分:0.0
自由下落的距离计算 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int N,i; double M,Sn=0,An=0; scanf("%lf %d",&M,…… 题解列表 2024年08月03日 0 点赞 0 评论 46 浏览 评分:0.0
【编程入门】自由下落的距离计算 摘要:参考代码:# include<stdio.h># include<math.h> void ReBack(double M){ double back,sum=M; int i,N; …… 题解列表 2024年06月19日 0 点赞 0 评论 144 浏览 评分:9.9