题解 1019: [编程入门]自由下落的距离计算

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

优质题解

自由下落的距离计算-----C语言有图

摘要:解题思路:             由题: 一球从M米高度自由下落,每次落地后返回原高度的一半,再落下。             可知: 一次落地的距离=下一次落地后弹起的距离*2;即L1=T1*2=……

自由下落的距离计算

摘要:解题思路:注意事项:路程最后一次不算反弹参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){    int m……

!!!最后落地不反弹~~!

摘要:解题思路:最后那一次么得起来。注意事项:参考代码:#include<stdio.h>int main(){    int i;    double m,h,sum,n;    scanf("%lf %……

come on兄弟们

摘要:解题思路:注意事项:参考代#include<iostream>#include<stdio.h>#include<cmath>using namespace std;int main(){ doubl……

自由下落 暴力拆解

摘要:#include<stdio.h>#include<math.h>int main(){ int i; float c,sum=0,sum2; double m,n; scanf("%……

自由下落函数法

摘要:解题思路:注意事项:参考代码:# include<stdio.h># include<math.h>void ReBack(int M,int N);int main(){   int M,N;   ……