19

所以我有这个代码

  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
        {
            // ??????
        }
    }

有没有办法让 GetMax 在 first == second 时返回带有错误消息或其他内容的字符串。

4

5 回答 5

40

您可以使用内置的Math.Max方法

于 2016-10-05T23:14:41.443 回答
15
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
    {
        throw new Exception("Oh no! Don't do that! Don't do that!!!");
    }
}

但实际上我会这样做:

public static int GetMax(int first, int second)
{
    return first > second ? first : second;
}
于 2013-09-28T18:43:24.870 回答
4

由于您要返回更大的数字,因为两者都是相同的,您可以返回任何数字

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

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

您可以进一步简化为

public static int GetMax(int first, int second)
{
  return first >second ? first : second; // It will take care of all the 3 scenarios
}
于 2013-09-28T18:43:33.920 回答
1

如果可以使用 List 类型,我们可以使用内置方法 Max() 和 Min() 来识别大量值中的最大和最小数字。

List<int> numbers = new List<int>();
numbers.Add(10);
numbers.Add(30);
numbers.Add(30);
..

int maxItem = numbers.Max();
int minItem = numbers.Min();
于 2015-01-19T12:37:32.637 回答
0
    static void Main(string[] args)
    {
        Console.Write("First Number: ");
        int number1 = int.Parse(Console.ReadLine());

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

        var max = (number1 > number2) ? number1 : number2;
        Console.WriteLine("Greatest Number: " + max);
    }
于 2020-10-01T18:30:12.727 回答