问答详情
源自:3-4 编程练习

麻烦大佬帮找问题,谢谢

using System;

using System.Collections.Generic;

using System.Text;


namespace Test

{

    class Program

    {

        static void Main(string[] args)

        {

            double price = 4388;//手机的售价

            double salary = 4978.67;//本月实发工资

            //判断这月工资够不够买手机

            if(salary>=price)

            {

                Console.WriteLine("这月工资够买手机!");

            }

            else

            {

                Console.WriteLine("这月工不够买手机!");

                

            }


        }

    }

}


提问者:qq_慕雪3498444 2019-06-20 10:18

个回答

  • 萌新小白求带
    2019-06-20 23:55:08

    using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                double price = 4388;//手机的售价

                double salary = 4978.67;//本月实发工资

                //请在这里补充条件判断

                if(salary>price)

                {

                    Console.WriteLine("这月工资够买手机!");

                }

                else

                {

                    Console.WriteLine("这月不够买手机!");

                }

            }

        }

    }


  • qq_世态炎凉_3
    2019-06-20 10:55:41

    大哥 首先      if(salary>=price) 这个地方的括号是中文的 

    然后呢  Console.WriteLine("这月工资够买手机!"); 后面的分号 是中文的 

    其次呢      Console.WriteLine("这月工不够买手机!"); 后面的分号 也是中文的