프로그램 만들기 (3) 썸네일형 리스트형 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(.. 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 import java.util.Scanner; public class Main { public static void main(String[] args) { // TODO Auto-generated method stub int[] arr = new int[1000]; int[] hol = new int[1000]; int[] jjack = new int[1000]; int a; int cnt1 = 0; int cnt2 = 0; Scanner sc = new Scanner(System.in); System.out.print("몇 개의 숫자를 입.. 이전 1 다음