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

这个为什么输出不对

  if(salary>=price)

{

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

}

   else

   {

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


提问者:qq_拾忆_pCEJW4 2018-10-04 13:25

个回答

  • 蔡如娴
    2018-10-28 15:30:39

    要加中文的感叹号

  • qq_拾忆_pCEJW4
    2018-10-04 14:09:23

    加了只是忘了写了

  • 秦失其鹿
    2018-10-04 13:40:33

    你是最后的大括号忘记加了吧

    using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                int salary = 1000;

                int price = 500;

                if (salary >= price)


                {


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


                }


                else


                {


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

                }

            }

        }

    }

    数字是我随便加的,可以输出结果