백준 C#3 백준#2751 2023-10-27 https://www.youtube.com/watch?v=QAyl79dCO_k 참고한 영상 병합 정렬 소스.. using System; using System.Text; class HelloWorld { static void Main() { StringBuilder stringBuilder = new StringBuilder(); int count = int.Parse(Console.ReadLine()); int[] arr = new int[count]; for(int i = 0; i 2023. 10. 27. 백준#2587 2023-10-24 원래 깔끔하거나 힘들게 풀 경우에만 글을 올리는데, 요번건 별건 아녀도 평균치는 채웠다고생각하여 올려봅니다 ^_^ string[] puts = new string[5]; string temp = ""; for(int i = 0; i 2023. 10. 24. 백준#2750 2023-10-23 List arr = new List(); List deleteIndex = new List(); while(true) { string put = Console.ReadLine(); if (string.IsNullOrWhiteSpace(put)) { break; } arr.Add(int.Parse(put)); } int temp; int length = arr.Count; for(int i = 0; i 2023. 10. 23. 이전 1 다음