알고리즘/BOJ

백준 1152번 단어의 개수

꾸준함. 2018. 10. 27. 01:21

문제 링크입니다: https://www.acmicpc.net/problem/1152


공백이 포함된 문자열이기 때문에 getline을 통해 입력받는 것이 핵심인 문제였습니다.


#include <iostream>

#include <string>

using namespace std;

 

int main(void)

{

        ios_base::sync_with_stdio(0);

        cin.tie(0);

        string s;

        getline(cin, s);

        bool space = true;

        int cnt = 0;

        for (int i = 0; i < s.length(); i++)

        {

                 if (s[i] == ' ')

                         space = true;

                 else if (space)

                 {

                         space = false;

                         cnt++;

                 }

        }

        cout << cnt << "\n";

        return 0;

}


개발환경:Visual Studio 2017


지적, 조언, 질문 환영입니다! 댓글 남겨주세요~

반응형

'알고리즘 > BOJ' 카테고리의 다른 글

백준 1316번 그룹 단어 체커  (0) 2018.10.27
백준 5622번 다이얼  (0) 2018.10.27
백준 1726번 로봇  (4) 2018.10.27
백준 2004번 조합 0의 개수  (2) 2018.10.18
백준 1629번 곱셈  (2) 2018.10.18