在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中文網其他相關文章!