在 C# 中查找未排序数值数组中的最大值和索引
确定未排序数组中的最大值及其相应索引数字数组,例如 int[] anArray = { 1, 5, 2, 7 },您可以使用以下内容方法:
方法:
代码:
using System.Linq; int[] anArray = { 1, 5, 2, 7 }; // Find the maximum value int maxValue = anArray.Max(); // Find the index of the maximum value int maxIndex = anArray.ToList().IndexOf(maxValue); // Display the results Console.WriteLine($"Maximum Value: {maxValue}"); Console.WriteLine($"Index of Maximum Value: {maxIndex}");
输出:
Maximum Value: 7 Index of Maximum Value: 3
以上是如何在 C# 未排序数组中查找最大值及其索引?的详细内容。更多信息请关注PHP中文网其他相关文章!