这次又翻车了

来源:2-18 C#的逻辑运算符(一)

颖颖99

2018-08-19 16:14

为啥答案是唯一的?


写回答 关注

4回答

  • 慕斯卡6571962
    2019-10-31 16:47:52

    using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            {

                int x = 5;

                int y = 6;

                Console.WriteLine(x < y);//输出True

                Console.WriteLine(x > y);//输出False

                Console.WriteLine(x != y);//输出True

            }

        }

    }


  • 你好___世界
    2019-06-17 13:12:41

    就像测试,每道题都有每道题的唯一答案。

  • 人生白月
    2018-09-28 19:40:08

    只要你想,代码可以写成你想要的样子。

  • 唯逸
    2018-08-20 08:26:14

    为啥不唯一?

C#开发轻松入门

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

255542 学习 · 1485 问题

查看课程

相似问题