📅  最后修改于: 2023-12-03 14:59:42.788000             🧑  作者: Mango
在 C# 中,我们可以使用内置的 List<T>
类型来存储一组数据并进行操作。本文将介绍如何用 C# 在一个列表中查找最大的数。
List<int>
类型的列表,并向其添加一些数据。List<int> nums = new List<int>() { 12, 3, 6, 8, 9, 11 };
max
用来存储最大值,初始化为列表中的第一个值。int max = nums[0];
max
更大的值,就将 max
更新为该值。foreach (int num in nums)
{
if (num > max)
{
max = num;
}
}
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# 中查找列表中的最大数的方法。