题解 2812: 球弹跳高度的计算

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

筛选

2812: 球弹跳高度的计算

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std ;int main (){  double h,sum;  cin>>h;   //输入初始高……

简单明了,通俗易懂

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int h,i;    double sum=0.0,H,a;    scanf("%d",&h);   ……

采购是我,我是才够

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

java没写出来

摘要:参考代码:#include<iostream> using namespace std; int main() { double h; cin >> h; double res……

球弹跳高度的计算C语言

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int h; scanf("%d",&h); int i; double h1=h; double s=0; f……

2812: 球弹跳高度的计算

摘要:解题思路:注意事项:令人忍俊不禁参考代码:height=float(input())sum=-heightsum=float(sum)for i in range(1,11):    sum=sum+……

2812 (C语言)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    double a,b,i,c=0;    scanf("%lf", &a);    b=a;    for……