코테 기초

ISC - 쪼개기

서버관리자 페페 2022. 12. 8. 05:49
// ISC - L1
Scanner sc = new Scanner(System.in);
String str = sc.next();
int[] A = new int[str.length()];
for (int i = 0; i < str.length(); i++) {
    A[i] = Integer.parseInt(str.substring(i, i+1));
}

'코테 기초' 카테고리의 다른 글

Insertion sort  (0) 2022.12.08
for문 안과 밖에서의 데이터 흐름과 데이터 사용가능성  (0) 2022.12.08
Selection Sort  (0) 2022.12.08
Bubble Sort  (0) 2022.12.08
container and triangle swap  (0) 2022.12.08