- [백준] - 27866 - 문자와 문자열 2023.10.30
2023. 10. 30. 10:59
String.substring();
package org.example;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// 단어 입력
String voca = sc.nextLine();
// 단어의 N 번째 스펠링
int seletedOfSpell = sc.nextInt();
String selected = voca.substring(seletedOfSpell-1, seletedOfSpell);
System.out.println(selected);
}
}
String.charAt();
package org.example;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// 단어 입력
String voca = sc.nextLine();
// 단어의 N 번째 스펠링
int seletedOfSpell = sc.nextInt();
char vocaArray = voca.charAt(seletedOfSpell-1);
System.out.println(vocaArray);
}
}
String.toCharArray();
package org.example;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// 단어 입력
String voca = sc.nextLine();
// 단어의 N 번째 스펠링
int seletedOfSpell = sc.nextInt();
char[] result = voca.toCharArray();
System.out.println(result[seletedOfSpell-1]);
}
}
'AREA(지속적인 일상) > 02_백준' 카테고리의 다른 글
[백준] - 3003 - 킹, 퀸, 룩, 비숍, 나이트, 폰 (0) | 2023.10.30 |
---|---|
[백준] - 25083 - 쌔싹 (1) | 2023.10.30 |
[백준] - 10811 - 바구니 뒤집기 (0) | 2023.10.27 |
[백준] - 10813 - 공바꾸기 (1) | 2023.10.27 |
[백준] - 5597 - 과제 안 내신 분..? (0) | 2023.10.26 |