[코드업 기초 100제] [기초 - 1차원 배열] 코드업 1093 ~ 1095 자바 풀이

2022. 2. 16. 00:21코딩테스트/코드업

728x90
반응형

문제 출처


https://github.com/haessae0/MCTP

 

1093. 이상한 출석 번호 부르기 1

import java.util.*;

public class codeup1093 {
  public static void main(String[] args) throws Exception {
    Scanner sc = new Scanner(System.in);
    int[] array = new int[23];

    int a = sc.nextInt();

    for (int i = 0; i < a; i++) {
      array[sc.nextInt() - 1]++;
    }

    for (int i = 0; i < array.length; i++) {
      System.out.print(array[i] + " ");
    }
  }
}

 

1094. 이상한 출석 번호 부르기 2

import java.util.*;

public class codeup1094 {
  public static void main(String[] args) throws Exception {
    Scanner sc = new Scanner(System.in);
    int a = sc.nextInt();

    int[] array = new int[a];

    for (int i = 0; i < a; i++) {
      array[i] = sc.nextInt();
    }

    for (int i = a - 1; i >= 0; i--) {
      System.out.print(array[i] + " ");
    }
  }

}

 

1095. 이상한 출석 번호 부르기 3

import java.util.Scanner;

public class codeup1095 {
  public static void main(String[] args) throws Exception {
    Scanner sc = new Scanner(System.in);
    int a = sc.nextInt();
    int[] array = new int[a];

    int min = 24;

    for (int i = 0; i < a; i++) {
      array[i] = sc.nextInt();
      if (min > array[i]) {
        min = array[i];
      }
    }

    System.out.println(min);

  }

}
728x90
반응형