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 中国語 Web サイトの他の関連記事を参照してください。