반응형
https://www.acmicpc.net/problem/14038
입력과 if문을 사용해보는 문제였습니다.
📕 풀이방법
📔 입력 및 초기화
6개의 문자 info를 입력 받습니다.
📔 풀이과정
info가 'W'라면 winCnt를 1씩 증가시켜줍니다.
📔 정답출력
조건에 따라 정답을 출력해줍니다.
📕 Code
#include <bits/stdc++.h>
using namespace std;
int winCnt;
int main(){
for(int i = 0; i < 6; i++){
char info;
cin >> info;
if(info == 'W') winCnt++;
}
if(!winCnt) cout << -1;
else if(winCnt >= 5) cout << 1;
else if(winCnt >= 3) cout << 2;
else cout << 3;
}
'Algorithm > Implementation' 카테고리의 다른 글
(C++) - 백준(BOJ) 15059 : Hard choice (0) | 2021.10.12 |
---|---|
(C++) - 백준(BOJ) 17863 : FYI (0) | 2021.10.10 |
(C++) - 백준(BOJ) 11549번 : Identifying tea (0) | 2021.09.29 |
(C++) - 프로그래머스(월간 코드 챌린지 시즌3) : 없는 숫자 더하기 (0) | 2021.09.18 |
(C++) - 백준(BOJ) 14467번 : 소가 길을 건너간 이유 1 (0) | 2021.09.15 |