题解 2789: 骑车与走路

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

筛选

感谢支持,谢谢你们的支持

摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){    int b,c;    float a;    cin>>a; ……

2789: 骑车与走路Python

摘要:解题思路:注意事项:参考代码:a=int(input())bike=(a/3)+27+23walk=a/1.2if bike>walk:    print(&#39;Walk&#39;)elif bi……

题解:骑车与走路

摘要:各位好,我们学了if的结构,想要知道它的结构请看我的文章我来把关于此题if的结构写出来#include <bits/stdc++.h>    //注意要改万能头    using namespac……

汽车与走路(非常简单版)

摘要:解题思路:咱只要比较时间,因此用分支来判断情况就欧克注意事项:参考代码:#include<stdio.h>int main(){    float a;    scanf("%f",&a);    i……

题解 2789: 骑车与走路

摘要:解题思路: 各位好,我们学了if的结构,想要知道它的结构请看我的文章我来把关于此题if的结构写出来注意事项:参考代码:#include<iostream>using namespace std;int……

简单的思路——骑车与走路

摘要:解题思路:数学+if else-if else语句。注意事项:不要将速度弄错了!参考代码:#include<stdio.h>int main(){    int a;    float t1,t2; ……

java--study||O.o

摘要:参考代码:import java.util.Scanner;   public class Main {   public static void main(String[] args)   ……

2789: 骑车与走路

摘要:解题思路:有三种情况注意事项:Bike两边要加“ ”参考代码:#include <bits/stdc++.h>using namespace std;int main(){double a;cin>>……

骑车与走路

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){    int a;    scanf("%d",&a);    if((50+(double)a/3.0)<(……