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 중국어 웹사이트의 기타 관련 기사를 참조하세요!