袁一航


私信TA

用户名:dotcpp0689705

访问量:3172

签 名:

https://www.msn.cn/zh-cn/play/arcade

等  级
排  名 844
经  验 3632
参赛次数 12
文章发表 74
年  龄 0
在职情况 学生
学  校 景园中学
专  业

  自我简介:

Gold Digger https://supermario-game.com/fullscreen

解题思路:有三种情况

数学+if else-if else语句

  简述:                                                                         

#include <bits/stdc++.h>    //注意要改万能头

using namespace std;

   

int main()

{

   int 设数;

   cin>>设数;

   if(条件1)

   {

   语句

   }

   else if(条件2)     //else if是要发生条件1和条件2之间的部分

   {

   语句

   }

   else                //这里的else是以上都的条件没有发生的事

   {

   语句

   }

    return 0;

}

   

注意事项:不要将速度弄错了!

Bike两边要加“ ”

                                                               各位好,我们学了if的结构,想要知道它的结构请看我的文章

                                                                                我来把关于此题if的结构写出来!

参考代码:


                                                                                 那么,我来为大家写出此题的答案:


   

                                                                                #include <bits/stdc++.h>

 

                                                                           using namespace std;

 

                                                                               int main()

                                                                            {

                                                                                 int a;

                                                                                  cin>>a;

                                                                                  if(27+23+a/3.0<a/1.2)           //当自行车的速度大于走路速度时

                                                                                  {

                                                                                  cout<<"Bike"<<endl;

                                                                                  }

                                                                                 else if(27+23+a/3.0>a/1.2)     //当自行车的速度小于走路速度时

                                                                                 {

                                                                                    cout<<"Walk"<<endl;

                                                                                 }

                                                                                else                          //当自行车的速度等于走路速度时(或者以上条件都没有时)

                                                                                {

                                                                                    cout<<"All"<<endl;

                                                                                }

                                                                                return 0;

                                                                           }

   

                                                                    这就是这道题的题解,希望能帮助到大家!


 

0.0分

2 人评分

  评论区

  • «
  • »