#include <iostream>
#include <string>
using namespace std;
int main(void)
{
string s;
int cnt = 1;
getline(cin, s);
char delim = 0x20;
for (int i = 0; i < s.length(); i++)
{
if (s[i] == delim)
cnt = cnt + 1;
}
if (s[0] == delim)
cnt--;
if (s[s.length() - 1] == delim)
cnt--;
cout << cnt << endl;
return 0;
}
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 1158번 요세푸스 문제 (파이썬) (0) | 2022.03.11 |
---|---|
[백준] 1157번 단어 공부 (C++) (0) | 2022.03.11 |
[백준] 1110번 더하기 사이클 (C++) (0) | 2022.03.11 |
[백준] 1094번 막대기 (파이썬) (0) | 2022.03.11 |
[백준] 1085번 직사각형에서 탈출 (파이썬) (0) | 2022.03.11 |