[C#] 15일차 - 104. List<T>와 배열의 정렬C#/C#200제2021. 2. 13. 18:37
Table of Contents
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace A104_AlphabeticalSort
{
class Program
{
static void Main(string[] args)
{
List<string> lstNames = new List<string>();
lstNames.Add("dog");
lstNames.Add("cow");
lstNames.Add("rabbit");
lstNames.Add("goat");
lstNames.Add("sheep");
lstNames.Sort();
foreach (string s in lstNames)
Console.Write(s + " ");
Console.WriteLine();
string[] arrNames = new string[100];
arrNames[0] = "dog";
arrNames[1] = "cow";
arrNames[2] = "rabbit";
arrNames[3] = "goat";
arrNames[4] = "sheep";
Array.Sort(arrNames);
foreach (string s in lstNames)
Console.Write(s + " ");
Console.WriteLine();
}
}
}
반응형
'C# > C#200제' 카테고리의 다른 글
[C#] 15일차 - 106. 두 개의 배열을 쌍으로 정렬 (0) | 2021.02.13 |
---|---|
[C#] 15일차 - 105. 배열을 내림차순으로 정렬하는 방법 (0) | 2021.02.13 |
[C#] 15일차 - 103. List<T> 컬렉션 (0) | 2021.02.13 |
[C#] 15일차 - 102. 컬렉션, ArrayList의 사용 (0) | 2021.02.13 |
[C#] 15일차 - 101. 큐를 이용한 프로그램 (0) | 2021.02.13 |
@반나무 :: 반나무_뿌리
3년차 WPF 개발자입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!