解题思路:
注意事项:
我也不想多说什么,可能是我理解有问题,最后一次弹起的距离竟然不算.
参考代码:
#include <stdio.h> int main() { int times,i; float height,sum=0,result; scanf("%f%d", &height,×); for(i=1;i<=times;i++){ sum+=height; result = height/2.0; if (i!=times){ sum+=result; } height=result; } printf("%.2f %.2f\n",result,sum); return 0; }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题10.5 (C语言代码)浏览:767 |
C语言程序设计教程(第三版)课后习题8.8 (C语言代码)浏览:627 |
不容易系列2 (C语言代码)浏览:640 |
最小公倍数 (C语言代码)浏览:894 |
Pascal三角 (C语言代码)浏览:1252 |
剪刀石头布 (C语言代码)浏览:1792 |
1128题解(返回值为数组的情况)浏览:571 |
整除问题 (C语言代码)浏览:594 |
简单的a+b (C语言代码)浏览:542 |
数列排序 (C语言代码)浏览:674 |