题解 1145: C语言训练-自由落体问题

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

筛选

最简的题解,等比公式求和

摘要:解题思路:要多利用数学公式注意事项:参考代码:b=int(input()) a=100*(1-0.5**b)*4-100      //路程是位移的两倍,减去一开始多算的100就行了 print(……

自由落体问题(简单C++)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<iomanip> using namespace std; int main() {     int n……

自由落体问题

摘要:参考代码:#include<iostream>#include<iomanip>using namespace std;int main(){ int i,n; float s=100,m=100; ……

自由落体问题

摘要: ```c #include #include int main() { float sum=100,h=50;//设置初值,sum为第一次落地总的行程,h是下一次 int ……

C语言训练-自由落体问题

摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <math.h> int main() {     int n;     scanf("%d", &n……

自由落体问题

摘要:解题思路: 在一次落地之后,下一次落地前弹起和下落的距离和为上一次下落的距离 参考代码: ```c #include int main() { int n; scanf("%d",……

1145: C语言训练-自由落体问题

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>//精确计算必备using namespace std;int main(){    int n; ……