이상한 출석번호 호출 코드업 1093

Inhyeeee·2021년 1월 3일
0

코딩 삽질 기록

목록 보기
13/20
import java.util.Scanner;

public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        
        int n = sc.nextInt();
        int[] call = new int[n];
        int[] myclass = new int[23];
        
        for(int i=0; i<call.length; i++){
        	int b = sc.nextInt();
            call[i] = b;
        	for(int j = 0; j<myclass.length; j++) {
                if(call[i] == j+1){
                    myclass[j] = myclass[j]+1;
                }
        	}
        }
        
        for(int k=0; k<23; k++){
            System.out.print(myclass[k] + " ");
        }
    }
}
profile
avocadoxxi

0개의 댓글