일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 | 31 |
- programmers
- 서울맛집
- oracle
- 정렬
- 수성구데이트
- 대명동맛집
- 수성구맛집
- 오라클
- 대구데이트
- 대구삼겹살
- 범어동맛집
- 브루트 포스
- C#
- BFS
- 대구맛집
- 백준
- 수성못삼겹살
- 별찍기
- 들안길삼겹살
- 대구카페
- 안지랑카페
- SQL
- 대구고깃집
- 조건문
- 프로그래머스
- 앞산카페
- 수성못맛집
- 큐
- 반복문
- 압구정데이트
- Today
- Total
목록코딩 공부/C# (100)
모든 일상

using System; using System.Collections; using System.Collections.Generic; namespace ConsoleApp3 { class Program { static void Main(string[] args) { int cnt = int.Parse(Console.ReadLine()); string[] result = new string[cnt]; Stack stack_1 = new Stack(cnt); bool error = false; for (int i = 0; i

using System; using System.Collections; using System.Collections.Generic; namespace ConsoleApp3 { class Program { static void Main(string[] args) { int cnt = int.Parse(Console.ReadLine()); Stack stack_1 = new Stack(cnt); for (int i = 0; i

using System; namespace ConsoleApp3 { class Program { static void Main(string[] args) { int cnt = int.Parse(Console.ReadLine()); int rank; int[] h = new int[cnt]; int[] w = new int[cnt]; for (int i = 0; i

using System; namespace ConsoleApp3 { class Program { static void Main(string[] args) { string[] arr = new string[8] { "c=", "c-", "dz=", "d-", "lj", "nj", "s=", "z=" }; string str = Console.ReadLine(); for (int i = 0; i

using System; namespace ConsoleApp3 { class Program { static void Main(string[] args) { int sum = 0; char[] ch = Console.ReadLine().ToUpper().ToCharArray(); for (int i = 0; i

using System; namespace ConsoleApp3 { class Program { static void Main(string[] args) { char[] ch = Console.ReadLine().ToCharArray(); string reversed = ""; for (int i = ch.Length - 1; i>=0; i--) { reversed += ch[i]; } string[] arr = reversed.Split(); if (int.Parse(arr[0]) > int.Parse(arr[1])) { Console.Write(arr[0]); } else if (int.Parse(arr[0])

using System; namespace ConsoleApp3 { class Program { static void Main(string[] args) { string str = Console.ReadLine(); string[] arr = str.Split(); int cnt = 0; for (int i = 0; i