Hueestory

[1152] 단어의 개수 (C++) 본문

PS(중단)/BOJ

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

히명 2024. 4. 25. 10:07
#include <iostream>
#include <algorithm>
#include <string>

using namespace std;

int main()
{
	ios::sync_with_stdio(false);
	cin.tie(NULL);
	cout.tie(NULL);

	string str; getline(cin, str);
	int result = 1;

	for (int i = 0; i < str.length(); i++) {
		if (str[i] == ' ')
			result++;
	}
	if (str[0] == ' ')
		result--;
	if (str[str.length() - 1] == ' ')
		result--;
	
	cout << result << endl;

	return 0;
}

 

1. 공백이 등장하면 단어의 개수 +1

 

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

 

2. 문자열의 첫 부분과 마지막 부분이 공백이면 result값 -1, 위 부분을 빼먹어서 틀렸던 문제

 

'PS(중단) > BOJ' 카테고리의 다른 글

[2438] 별 찍기 - 1 (C++)  (0) 2024.04.25
[1330] 두 수 비교하기 (C++)  (0) 2024.04.25
[1008] A/B (C++)  (0) 2024.04.25
[1001] A-B (C++)  (0) 2024.04.25
[1000] A+B (C++)  (0) 2024.04.25
Comments