시간 제한 | 메모리 제한 | 제출 | 정답 | 맞힌 사람 | 정답 비율 |
---|---|---|---|---|---|
1 초 | 1024 MB | 7954 | 5438 | 5018 | 70.280% |
단어 S와 정수 i가 주어졌을 때, S의 i번째 글자를 출력하는 프로그램을 작성하시오.
첫째 줄에 영어 소문자와 대문자로만 이루어진 단어 S가 주어진다. 단어의 길이는 최대 1000이다.
둘째 줄에 정수 i가 주어진다. (1≤ i ≤ |S|)
S의 i번째 글자를 출력한다.
Sprout
3
r
shiftpsh
6
p
Baekjoon
4
k
import java.util.Scanner;
public class Main{
public static void main(String[] args) {
Scanner sc= new Scanner(System.in);
String s = sc.nextLine();
int i = sc.nextInt();
System.out.println(s.charAt(i-1));
}
}