ComputerScience/Coding Test

백준 10807번: 개수 세기

VirtualDever 2022. 11. 10. 06:15
using System;

class Program
{
    static void Main(string[] args)
    {
        string stringNumber = Console.ReadLine();
        int totalNumber = System.Convert.ToInt32(stringNumber);
        string stringValues = Console.ReadLine();
        string[] stringValuesArray = stringValues.Split(' ', StringSplitOptions.None);
        int[] values = new int[stringValuesArray.Length];
        for (int i = 0; i < stringValuesArray.Length; i++)
        {
            values[i] = System.Convert.ToInt32(stringValuesArray[i]);
        }
        string stringMatch = Console.ReadLine();
        int match = System.Convert.ToInt32(stringMatch);

        int totalCount = 0;
        for (int i = 0; i < totalNumber; i++)
        {
            if (values[i] == match)
            {
                totalCount++;
            }
        }

        Console.WriteLine(totalCount);
    }
}

문제 출처

https://www.acmicpc.net/problem/10807

 

10807번: 개수 세기

첫째 줄에 정수의 개수 N(1 ≤ N ≤ 100)이 주어진다. 둘째 줄에는 정수가 공백으로 구분되어져있다. 셋째 줄에는 찾으려고 하는 정수 v가 주어진다. 입력으로 주어지는 정수와 v는 -100보다 크거

www.acmicpc.net

 

'ComputerScience > Coding Test' 카테고리의 다른 글

백준 8958번: OX퀴즈  (0) 2022.11.10
백준 1546번: 평균  (0) 2022.11.10
백준 5597번: 과제 안 내신 분..?  (0) 2022.11.10
백준 25304번: 영수증  (0) 2022.11.10
백준 3003번: 킹, 퀸, 룩, 비숍, 나이트, 폰  (0) 2022.11.09