问答详情
源自: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_小瑞_0 2017-03-26 16:07

个回答

  • 慕神1685922
    2017-03-28 14:55:15

    我试了一下,代码没问题啊!

  • qq_小瑞_0
    2017-03-26 16:12:10

    知道了,中文叹号