问答详情
源自:3-2 C#中判断和分支

为什么输入一个小于95的还是输出奖励

如何自己选择

提问者:一个人一座城一生心疼 2016-07-15 10:30

个回答

  • Mxayrting
    2019-10-23 15:24:44

    using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                int score = 94;//分数

                if(score>95)//判断

                    {//分支1

                        Console.WriteLine("奖励一辆自行车");

                    }

                    else//分支2

                    {

                         Console.WriteLine("要啥自行车");

                    }

            }

        }

    }


  • 宝慕林7028735
    2017-12-25 21:48:15

    现在你应该知道了吧,告诉我们呗= =我也是输入94的时候还是显示奖励

  • 慕九州240590
    2017-10-12 23:49:14

    看看是不是在if语句后面加了分号“;”?

  • 慢走
    2016-07-16 18:30:23

    if (score>95)

    {

    }

    你可能写成了if(score>=95)

  • Sunshineonst3274227
    2016-07-15 10:41:55

    是不是带等号了?

  • 木刻雪原
    2016-07-15 10:35:46

    这个有没有代码呢?