배운 점:
실수한 점:
using System;
using System.Collections.Generic;
using System.Linq;
namespace ConsoleApp1
{
internal class Program
{
static void Main(string[] args)
{
string strInput = Console.ReadLine();
int i = int.Parse(Console.ReadLine());
// 문제에서 i는 첫 글자를 1로 생각하기 때문에 0부터 시작하는 배열 인덱스에서는 -1 해줘야 맞다
char answer = strInput[i-1];
// 결과 출력
Console.WriteLine(answer);
}
}
}
728x90
'알고리즘 문제 풀이 > 백준' 카테고리의 다른 글
[백준 2884번/C#] 알람 시계 (2) | 2023.10.22 |
---|---|
[백준 2675번/C#] 문자열 반복 (0) | 2023.10.22 |
[백준 11654번/C#] 아스키 코드 (0) | 2023.10.22 |
[백준 11720번/C#] 숫자의 합 (0) | 2023.10.22 |
[백준 10818번/C#] 최소, 최대 (0) | 2023.10.22 |