各位大哥大姐,哪里有问题啊,咋报错啊

来源:3-8 编程练习

weixin_慕的地4444356

2021-07-15 15:25

using System;

using System.Collections.Generic;

using System.Text;


namespace Test

{

    class Program

    {

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

            }


        }

    }

}


写回答 关注

5回答

  • qq_慕先生0535267
    2021-08-26 17:26:53

    >=50000  就已经也包含 大于100000了       你的else if的判断条件都写错了

    weixin... 回复weixin...

    你没理解else if

    2024-02-20 15:00:22

    共 4 条回复 >

  • LITTLR
    2021-08-17 10:38:26

    送一套茶具前面的Writeline

    改成 WriteLine

  • 慕移动3317354
    2021-07-31 13:31:06

    送一套茶具前面的Writeline 中l改成大写的L试一试

  • 慕移动3317354
    2021-07-31 13:30:58

    送一套茶具前面的Writeline 中l改成大写的L试一试

  • weixin_慕的地4444356
    2021-07-15 15:31:11

    http://img4.mukewang.com/60efe4260001918009660644.jpg

    我可纳了闷了/

C#开发轻松入门

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

254117 学习 · 1459 问题

查看课程

相似问题