不应该这样写吗?

来源:3-8 编程练习

weixin_慕圣123926

2019-10-26 13:17

namespace Test

{

    class Program

    {

        static void Main(string[] args)

        {

            double money = 60000.00;//存款金额

            if(money>= 100000){

                Console.WriteLine("送一台微波炉");

            }

            else{

                if(50000<=money&&money<100000)

                {

                    Console.WriteLine("送一套茶具");

                }

                else{

                    if(10000<=money&&money<50000){

                        Console.WriteLine("送一袋大米");

                    }

                    else{

                        Console.WriteLine("没有礼品");

                    }

                }

            }


        }

    }

}


写回答 关注

2回答

  • weixin_慕少4105335
    2020-03-04 15:29:33

    是else if   最后一句就写else  就可以了

  • 慕丝4456350
    2019-10-31 12:05:23

    应该 是else if 吧

C#开发轻松入门

本门课程是C#语言的入门教程,将带你轻松入门.NET开发

254118 学习 · 1459 问题

查看课程

相似问题