본문 바로가기

Algorithm/Implementation

(C++) - 백준(BOJ) 11549번 : Identifying tea

반응형

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

 

11549번: Identifying tea

The first line contains an integer T representing the tea type (1 ≤ T ≤ 4). The second line contains five integers A, B, C, D and E, indicating the answer given by each contestant (1 ≤ A, B, C, D, E ≤ 4).

www.acmicpc.net

for문과 if문을 사용해보는 문제였습니다.

 

📕 풀이방법

📔 입력 및 초기화

cnt, n, 5개의 정수를 입력해줍니다. n은 tea의 이름이 정수형태로 표현된 값입니다.

 

📔 풀이과정

5개 정수를 입력할 때마다 n과 같은지를 비교해 같다면 cnt++해줍니다.

 

📔 정답출력

cnt를 출력합니다.


📕 Code

#include <bits/stdc++.h>
using namespace std;
int n, cnt;
int main(){
    cin >> n;
    for(int i = 0,x; i < 5; i++){
        cin >> x;
        if(x == n) cnt++;
    }
    cout << cnt;
}