2つの数値のうち大きい方の値を返すメソッド 質問する

2つの数値のうち大きい方の値を返すメソッド 質問する

このコードがあります

  static void Main(string[] args)
    {
        Console.Write("First Number = ");
        int first = int.Parse(Console.ReadLine());

        Console.Write("Second Number = ");
        int second = int.Parse(Console.ReadLine());

        Console.WriteLine("Greatest of two: " + GetMax(first, second));
    }

    public static int GetMax(int first, int second)
    {
        if (first > second)
        {
            return first;
        }

        else if (first < second)
        {
            return second;
        }
        else
        {
            // ??????
        }
    }

first == second の場合に、GetMax がエラー メッセージなどの文字列を返すようにする方法はありますか。

ベストアンサー1

内蔵のMath.Max方法

おすすめ記事