解题思路:
蜗牛爬井。。
由于最后肯定需要在白天爬上去,所以不妨先将井高减去白天一天能爬的高度,然后计数一天,
接下来再继续分析,
1、爬不上去的情况:井高仍为正,而下滑高度大于等于上升高度;
2、爬得上去的情况:
①剩余井高为非正,说明第一天就爬上去了,ans = 1;
②剩余井高为正,ans += 剩余井高 / 每日净上升高度,结果向上取整。
注意事项:
ceil函数:
用 法: double ceil(double x);
功 能: 返回大于或者等于指定表达式的最小整数
头文件:math.h
注意参数为double型
参考代码:
#include<stdio.h> #include<math.h> int main() { int high, up, down, ans; while (scanf("%d%d%d", &high, &up, &down) != EOF) { high -= up; ans = 1; if (high > 0 && up <= down) printf("GAME OVER!\n\n"); else if (high <= 0) { printf("1\n\n"); } else { ans += (int)ceil((double)high / (up - down)); printf("%d\n\n", ans); } } return 0; }
0.0分
0 人评分