https://www.acmicpc.net/problem/10807
import java.util.Scanner;
public class Main{
//BufferedReader를 사용하기위해선 예외처리가 필수
public static void main(String[] args) throws Exception {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
int[] array = new int[n];
int cnt = 0;
for(int i = 0 ; i < n ; i++) {
array[i] = sc.nextInt();
}
int find_nun = sc.nextInt();
for (int i = 0 ; i < array.length ; i++) {
if(array[i] == find_nun )
cnt++;
}
System.out.println(cnt);
}
}
'프로그래밍언어 > 알고리즘' 카테고리의 다른 글
백준 10818 최소, 최대_JAVA (0) | 2023.05.05 |
---|---|
백준 10871 X보다 작은 수 (0) | 2023.05.05 |
백준 10952 A+B-5_JAVA (0) | 2023.05.04 |
백준 2439_별 찍기2_JAVA (0) | 2023.05.04 |
백준 2438 별 찍기_JAVA (0) | 2023.05.04 |