전체 글 (66) 썸네일형 리스트형 유용한 내장함수. String형 배열을 int형 배열로 변환하기 int[] nums = Arrays.stream(array_word).mapToInt(Integer::parseInt).toArray(); 불러오는 중입니다... String형 배열을 int형 배열로 쓸때가 있다. PS를 풀 때 매우 유용한 내장함수이다. Java) 최빈수 구하기, 최빈수의 횟수 구하기 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 import java.util.ArrayList; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int[] arr = new int[10]; for(int i =0;ics Java) 학생 학번 확인 프로그램 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 import java.util.ArrayList; import java.util.Scanner; public class Main { public static void main(String[] args) { Student st1 = new Student("손오공", "1111"); Student st2 = new Student("저팔계", "2222"); Student st3 = new Student("사오정", "3333"); ArrayList list = new ArrayList(); list.add(.. 이전 1 2 3 4 ··· 22 다음