📌  相关文章
📜  c# 查找列表中的最大数 - C# (1)

📅  最后修改于: 2023-12-03 14:59:42.788000             🧑  作者: Mango

C# 查找列表中的最大数

在 C# 中,我们可以使用内置的 List<T> 类型来存储一组数据并进行操作。本文将介绍如何用 C# 在一个列表中查找最大的数。

实现步骤
  1. 创建一个 List<int> 类型的列表,并向其添加一些数据。
List<int> nums = new List<int>() { 12, 3, 6, 8, 9, 11 };
  1. 创建一个变量 max 用来存储最大值,初始化为列表中的第一个值。
int max = nums[0];
  1. 遍历列表中的每一个元素,如果发现比 max 更大的值,就将 max 更新为该值。
foreach (int num in nums)
{
    if (num > max)
    {
        max = num;
    }
}
  1. 最后输出 max 即可。
Console.WriteLine("最大值为:" + max);
完整代码
using System;
using System.Collections.Generic;

class Program
{
    static void Main(string[] args)
    {
        List<int> nums = new List<int>() { 12, 3, 6, 8, 9, 11 };
        int max = nums[0];
        foreach (int num in nums)
        {
            if (num > max)
            {
                max = num;
            }
        }
        Console.WriteLine("最大值为:" + max);
    }
}
结果输出

最大值为:12

以上就是如何在 C# 中查找列表中的最大数的方法。