https://www.acmicpc.net/problem/27866
#include <stdio.h>
int main() {
char str[2000];
int n;
scanf("%s", str);
scanf("%d", &n);
printf("%c", str[n-1]);
return 0;
}
'c > 백준' 카테고리의 다른 글
11654. 아스키 코드 (0) | 2023.04.06 |
---|---|
2743. 단어 길이 재기 (0) | 2023.04.06 |
2675. 문자열 반복 (0) | 2023.04.06 |
9086. 문자열 (0) | 2023.04.05 |
10872. 팩토리얼 (0) | 2023.04.04 |