简单的思路——骑车与走路 摘要:解题思路:数学+if else-if else语句。注意事项:不要将速度弄错了!参考代码:#include<stdio.h>int main(){ int a; float t1,t2; …… 题解列表 2022年11月05日 0 点赞 2 评论 852 浏览 评分:9.9
汽车与走路(非常简单版) 摘要:解题思路:咱只要比较时间,因此用分支来判断情况就欧克注意事项:参考代码:#include<stdio.h>int main(){ float a; scanf("%f",&a); i…… 题解列表 2022年11月11日 0 点赞 0 评论 296 浏览 评分:9.0
2789: 骑车与走路 摘要:解题思路:注意事项:参考代码:a = int(input())if a / 3 + 50 < a / 1.2: print('Bike')elif a / 3 + 50 == a…… 题解列表 2022年12月01日 0 点赞 0 评论 212 浏览 评分:9.9
2789: 骑车与走路 摘要:```cpp #include using namespace std; int main() { int b,c; float a; cin>>a; …… 题解列表 2023年01月13日 0 点赞 3 评论 372 浏览 评分:9.9
骑车与走路 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; double s1,s2; scanf("%d",&n); s1=…… 题解列表 2023年01月14日 0 点赞 0 评论 122 浏览 评分:0.0
骑车与走路 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n);int bx = n / 1.2;int bike = n / 3.…… 题解列表 2023年02月20日 0 点赞 0 评论 84 浏览 评分:0.0
感谢支持,谢谢你们的支持 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int b,c; float a; cin>>a; …… 题解列表 2023年06月03日 0 点赞 0 评论 95 浏览 评分:2.0
题解:骑车与走路 摘要:各位好,我们学了if的结构,想要知道它的结构请看我的文章我来把关于此题if的结构写出来#include <bits/stdc++.h> //注意要改万能头 using namespac…… 题解列表 2023年06月03日 0 点赞 0 评论 225 浏览 评分:8.0
骑车与走路 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int a; scanf("%d",&a); if((50+(double)a/3.0)<(…… 题解列表 2023年07月13日 0 点赞 0 评论 256 浏览 评分:9.9
题解 2789: 骑车与走路 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a; scanf("%d", &a); if ((10*a/12)>(10*a/30+…… 题解列表 2023年08月17日 0 点赞 0 评论 183 浏览 评分:0.0