Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

C#에서 배열을 오름차순으로 어떻게 정렬합니까?

<시간/>

먼저 정렬되지 않은 배열을 설정합니다.

int[] list = {98, 23, 97, 36, 77};

Sort() 메서드를 사용하여 배열을 정렬합니다.

Array.Sort(list);

다음 코드를 실행하여 배열을 오름차순으로 정렬할 수 있습니다.

using System;
namespace Demo {
   public class MyApplication {
      public static void Main(string[] args) {
         int[] list = {98, 23, 97, 36, 77};
         Console.WriteLine("Original Unsorted List");
         foreach (int i in list) {
            Console.Write(i + " ");
         }
         Array.Sort(list);
         Console.WriteLine("\nSorted List");
         for(int i=0; i<list.Length; i++) {
            Console.Write(list[i] + " ");
         }
      }
   }
}

출력

Original Unsorted List
98 23 97 36 77
Sorted List
23 36 77 97 98