大神的探险 之 满载而归-题解(C语言代码) 摘要: #include int main(void) { int a = 0, b = 0, c = 0; while (EOF != sc…… 题解列表 2020年03月11日 0 点赞 0 评论 428 浏览 评分:9.9
优质题解 题解 1418: 大神的探险 之 满载而归(C语言),分成这三种情况,你就能爬出密道 摘要: 总共需要考虑三种情况: (1)上爬的高度直接大于等于密道的深度,那么当天白天就能爬出密道,而且 不用进入黑夜下滑 (2)上爬的高度小于密道的深度,一天肯定爬不出去,…… 题解列表 2021年03月11日 0 点赞 0 评论 324 浏览 评分:6.0
大神的探险 之 满载而归 (Java代码) 摘要: Scanner sc=new Scanner(System.in); while(sc.hasNext()) { double a=sc.nextDouble(); doubl…… 题解列表 2018年08月27日 0 点赞 0 评论 1219 浏览 评分:0.0
大神的探险 之 满载而归(C++) 摘要: #include #include #include #include #include #include #include …… 题解列表 2022年02月13日 0 点赞 0 评论 166 浏览 评分:0.0
c代码记录之满载而归 摘要:```c #include int main() { int a,b,c; while(~scanf("%d%d%d",&a,&b,&c)){ if(a…… 题解列表 2024年01月11日 0 点赞 0 评论 65 浏览 评分:0.0
优质题解 大神的探险 之 满载而归 (C语言代码) 摘要:解题思路: 蜗牛爬井。。 由于最后肯定需要在白天爬上去,所以不妨先将井高减去白天一天能爬的高度,然后计数一天, 接下来再继续分析, &nbs 题解列表 2018年08月27日 3 点赞 0 评论 664 浏览 评分:0.0
大神的探险 之 满载而归 (C语言代码) 摘要:解题思路: 已知密道深度为a米,cqy白天会向上爬b米,晚上睡觉时会下滑c米,那么cqy需要几天才能爬出密道? 按要求用暴力即可求出。注意事项: 1.如果b>=a,则白天1天就可以爬…… 题解列表 2019年02月17日 1 点赞 1 评论 535 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a, b, c; while (scanf("%d", &a) != EOF) { …… 题解列表 2023年06月25日 0 点赞 0 评论 61 浏览 评分:0.0
大神的探险 之 满载而归 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,c; int i,j,k,t; while(scanf("%d%d%d",&a,&b,&c)!=…… 题解列表 2018年02月23日 0 点赞 0 评论 538 浏览 评分:0.0