코딩테스트 문제 풀이/[백준] 문자열(10)
-
[C#] 백준 1157번 단어 공부
using System; using System.Collections.Generic; using System.Linq; namespace _5 { class Program { static void Main(string[] args) { string input = Console.ReadLine(); string upper = input.ToUpper(); List inputList = new(); List checkWord = upper.Distinct().ToList(); int number = 0; char output = ' '; bool equalCheck = false; int count; if (input.Length > 1) { for (int i = 0; i < checkWord.Count;..
2021.12.19 -
[C#] 백준 10809번 알파벳 찾기
using System; namespace _3 { class Program { static void Main(string[] args) { char alpha = 'a'; string input = Console.ReadLine(); int ascii; string[] array = new string[26]; ascii = Convert.ToInt32(alpha); for (int i = 0; i < 26; i++) { for (int j = 0; j < input.Length; j++) { if (ascii == input[j] && array[i] == null) { array[i] = Convert.ToString(j); } } if (array[i] == null) array[i] = Conv..
2021.12.19 -
[C#] 백준 11720번 숫자의 합
using System; using System.Collections.Generic; namespace _2 { class Program { static void Main(string[] args) { int n = Convert.ToInt32(Console.ReadLine()); string input = Console.ReadLine(); int sum = RandAdd(n, input); Console.WriteLine(sum); } static public int RandAdd(int n, string input) { int sum = 0; for (int i = 0; i < input.Length; i++) { sum += Convert.ToInt32(input[i].ToString()); } ..
2021.12.19 -
[C#] 백준 11654번 아스키 코드
using System; namespace _1 { class Program { static void Main(string[] args) { var input = Convert.ToChar(Console.ReadLine()); Console.WriteLine(Convert.ToInt32(input)); } } } C#에서 아스키코드로 변환하는 방법은 Char형을 int형으로 변환해주기만 하면 된다. 주의할 점은 앞으로 string에서 int로 변환할때 Char인지 아닌지를 주의해야한다. 엉뚱하게 아스키코드가 출력될 수 있다.
2021.12.19