[BOJ] 1152번 단어의 개수 (C++)

Minju Kim·2023년 9월 30일
0
post-thumbnail
post-custom-banner

1152번 링크

1152번 문제

맞았습니다!

코드

#include <iostream>
#include <vector>
#include <string>

using namespace std;

int main() {
    ios_base::sync_with_stdio(false);
    cout.tie(NULL);
    cin.tie(NULL);
    
    string str;
    int result = 1;
    getline(cin, str);

    for (int i = 0; i < str.size(); i++) {
        if (str.at(i) == ' ') result++;
    }

    if (str.at(0) == ' ') result--;
    if (str.at(str.length() - 1) == ' ')result--;

    cout << result;
    return 0;

}
profile
이화여자대학교 컴퓨터공학과 22 / 백엔드 개발자(가 되고싶음) / Spring Boot, Flutter, Python, Java, Data structure, etc
post-custom-banner

0개의 댓글