알고리즘 자료구조/백준
[백준] 10807 개수 세기
yes_truly
2023. 7. 18. 14:23
728x90
🖊️문제
총 N개의 정수가 주어졌을 때, 정수 v가 몇 개인지 구하는 프로그램을 작성하시오.
🖊️문제 풀이
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
//n, 공백으로 구분된 정수 입력, v 입력
int n = sc.nextInt();
sc.nextLine();
String num = sc.nextLine();
String [] arr = num.split(" ");
String v = sc.next();
//v와 일치하는 정수의 개수 출력
int cnt = 0;
for(String s : arr){
if(v.equals(s)){
cnt++;
}
}
System.out.println(cnt);
}
}
728x90