请问这个错哪了

来源:3-8 编程练习

qq_微尘_31

2017-10-08 22:39

请问这个错哪了 

if(money >= 100000)
             {
                 Console.WriteLine("送一台微波炉");
             }
            else if(money >= 50000)
             {
                 Console.WriteLine("送一套茶具");
             }
            else if(money >= 10000)
             {
                 Console.WriteLine("送一袋大米");
             }
            else
             {
                 Console.WriteLine("没有礼物");
             }

写回答 关注

2回答

  • qq_裂_0
    2018-04-11 17:08:55

    using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                double money = 60000.00;//存款金额

                if (money >= 10000)//请在这里补充多重条件判断

                {

                    if(money >= 50000)

                    {

                        if(money >= 100000)

                        {

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

                        }

                        else

                        {

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

                        }

                    }

                    else

                    {

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

                    }

                }

                else

                {

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

                }

            }

        }

    }

    结构错误

  • 慕移动6267570
    2017-10-09 01:58:43

    请注意你第一个if的括号

C#开发轻松入门

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

254118 学习 · 1459 问题

查看课程

相似问题