문제 링크입니다: https://www.acmicpc.net/problem/10769
간단한 문자열 처리 문제였습니다.
#include <iostream>
#include <string>
using namespace std;
int main(void)
{
ios_base::sync_with_stdio(0);
cin.tie(0);
string s;
getline(cin, s);
int happy = 0, sad = 0;
for (int i = 0; i < s.length(); i++)
{
if (i < s.length() - 3 && s[i] == ':' && s[i + 1] == '-' && s[i + 2] == ')')
happy++;
else if (i < s.length() - 3 && s[i] == ':' && s[i + 1] == '-' && s[i + 2] == '(')
sad++;
}
if (!happy && !sad)
cout << "none\n";
else if (happy == sad)
cout << "unsure\n";
else if (happy > sad)
cout << "happy\n";
else
cout << "sad\n";
return 0;
}
개발환경:Visual Studio 2017
지적, 조언, 질문 환영입니다! 댓글 남겨주세요~
'알고리즘 > BOJ' 카테고리의 다른 글
백준 1062번 가르침 (5) | 2018.10.28 |
---|---|
백준 2804번 크로스워드 만들기 (0) | 2018.10.27 |
백준 9996번 한국이 그리울 땐 서버에 접속하지 (0) | 2018.10.27 |
백준 1718번 암호 (0) | 2018.10.27 |
백준 2998번 8진수 (0) | 2018.10.27 |