为了账号安全,请及时绑定邮箱和手机立即绑定

有哪个大佬知道这个怎么编写么

59fd79b9000149f207200540.jpg求回答

正在回答

1 回答

namespace 练习30

{/*在类中定义比较函数

    如果第一个数大就返回1或者第一个数或者按大小排列

    如果相等的返回0

    如果第二个数大就返回第二个数或者按大小排列

    在main中定义两个数,通过对象调用方法*/

    public class Num

    {

        public virtual int Bijiao(int a, int b)

        {

            int c = 0;


            if (a > b)

            {

                c = a;

            }


            if (a < b)

            {

                c = b;

            }


            else

            {

                Console.WriteLine("0");

            }

            return c;

        }

    }

   public class Program:Num

    {


        public override int Bijiao(int a, int b)

        {

            return base.Bijiao(a, b);

        }



        static void Main(string[] args)

        {

            Program program = new Program();

            

            int a, b;

            a = Convert.ToInt32(Console.ReadLine());

            b = Convert.ToInt32(Console.ReadLine());

            int c = program.Bijiao(a, b);

            Console.WriteLine(c);

        }

    }

}

新手只能做到这里了,大佬有好方法的话请指教

0 回复 有任何疑惑可以回复我~
#1

飞天猪来也

你这个是方法重写,都不能算函数重载;函数重载可以同名不同参,就像你们重载构造函数一样。
2019-10-22 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

有哪个大佬知道这个怎么编写么

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信