为了账号安全,请及时绑定邮箱和手机立即绑定

这到底哪里有错,找不出来

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.WriteLine("送一台微波炉");

                   }else{

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

                   }

               }else{

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

            }else {

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

            }//请在这里补充多重条件判断


        }

    }

}


正在回答

3 回答

//我这样子不容易出错
static void Main(string[] args)
        {
            double money = 60000.00;//存款金额
            if (money > 100000)//请在这里补充多重条件判断
                Console.WriteLine("送一台微波炉");
            else if (money > 50000)
                Console.WriteLine("送一套茶具");
            else if (money > 10000)
                Console.WriteLine("送一袋大米");
            else
                Console.WriteLine("没有礼品");
        }


0 回复 有任何疑惑可以回复我~

你可以对照一下,50000那个符号应该是英文模式下的,你写成中文的了,另外就是把

else {

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

            }//请在这里补充多重条件判断

放到倒数第三个 } 后再加个 }

0 回复 有任何疑惑可以回复我~

using System;

using System.Collections.Generic;

using System.Text;

namespace FirstConsoleApp

{

    internal class Program

    {

        static void Main(string[] args)

        {

            double money = 60000.00;//存款金额


            if (money >= 10000)

            {


                if (money >= 50000)


                {

                    if (money >= 100000)

                    {


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

                    }

                    else

                    {

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

                    }

                }

            else

            {

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

             }

            

           }else

            {

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

            }//请在这里补充多重条件判断

        }

    }

}

我这个应该是对的


0 回复 有任何疑惑可以回复我~
#1

weixin_慕村4527266 提问者

谢谢!
2022-10-26 回复 有任何疑惑可以回复我~
#2

慕函数7131464 回复 weixin_慕村4527266 提问者

(●'◡'●)
2022-10-28 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

这到底哪里有错,找不出来

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信