#include <iostream>
#include <string>
using namespace std;
string s;
int answer = 0;
int main() {
getline(cin, s);
int index = 0;
while (index < s.length()) {
if (s[index] == ' ')
answer++;
index++;
}
if (s[0] == ' ')
answer--;
if (s[s.length() - 1] == ' ')
answer--;
cout << answer+1 << endl;
return 0;
}
'백준 알고리즘 > 시뮬레이션' 카테고리의 다른 글
백준 나무 재테크 C++ (0) | 2019.10.16 |
---|---|
백준 큐빙 C++ (0) | 2019.10.15 |
백준 1551번 C++ (0) | 2019.08.30 |
백준 1022번 C++ (0) | 2019.08.30 |
백준 1526번 C++ (0) | 2019.08.29 |