2D 배열 선언 -
int[] a = new int[] { 65, 45, 32, 97, 23, 75, 59 };
K번째로 작은 정수, 즉 5번째로 작은 정수를 원한다고 가정해 보겠습니다. 먼저 배열을 정렬하십시오 -
Array.Sort(a);
다섯 번째로 작은 요소를 얻으려면 -
a[k - 1];
전체 코드를 보자 -
예
using System; using System.IO; using System.CodeDom.Compiler; namespace Program { class Demo { static void Main(string[] args) { int[] a = new int[] { 65, 45, 32, 97, 23, 75, 59 }; // kth smallest element int k = 5; Array.Sort(a); Console.WriteLine("Sorted Array..."); for (int i = 0; i < a.Length; i++) { Console.WriteLine(a[i]); } Console.Write("The " + k + "th smallest element = "); Console.WriteLine(a[k - 1]); } } }