问答详情
源自:3-2 C#中判断和分支

怎样进行数据大小的比较呢?


我想问一下


提问者:慕圣7302465 2019-03-13 16:22

个回答

  • weixin_慕盖茨3053807
    2019-03-13 22:46:37

    using System;

    using System.Collections.Generic;

    using System.Text;


    namespace Test

    {

        class Program

        {

            static void Main(string[] args)

            { 

                int a=8; 

                int b=6;

                string test=a>b ? "a":"b";

                Console.Write(test);


            }