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

来源:3-8 编程练习

weixin_慕村4527266

2022-10-21 16:17

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回答

  • 紫色的秋
    2023-05-10 09:49:24
    //我这样子不容易出错
    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("没有礼品");
            }


  • 慕函数7131464
    2022-10-26 19:23:28

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

    else {

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

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

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

  • 慕函数7131464
    2022-10-26 19:19:02

    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("没有礼品");

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

            }

        }

    }

    我这个应该是对的


    慕函数713... 回复weixin...

    (●'◡'●)

    2022-10-28 16:29:09

    共 2 条回复 >

C#开发轻松入门

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

254118 学习 · 1459 问题

查看课程

相似问题