帮忙看下这样写为什么会报错!!!

来源:2-22 C#的运算符优先级

慕UI9485176

2020-06-22 08:48

using System;

using System.Collections.Generic;

using System.Text;


namespace Test

{

    class Program

    {

        static void Main(string[] args)

        {

            int x=1;

            int a1;

            bool a = ++x * x > 3;

            a1==x;

            Console.WriteLine(x);

            Console.WriteLine(a1);

            bool b =true ;//请赋值

            Console.WriteLine(a==b);

        }

    }

}


写回答 关注

1回答

  • 慕UI9485176
    2020-06-22 08:57:18

    已经试出来了问题出在双==

C#开发轻松入门

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

254118 学习 · 1459 问题

查看课程

相似问题