Notice
Recent Posts
Recent Comments
Link
«   2024/11   »
1 2
3 4 5 6 7 8 9
10 11 12 13 14 15 16
17 18 19 20 21 22 23
24 25 26 27 28 29 30
Tags
more
Archives
Today
Total
관리 메뉴

main

[백준 - 1152번] 단어의 개수 본문

Algorithm

[백준 - 1152번] 단어의 개수

1984 2022. 1. 21. 08:49
  • trim 구현
  • 아무것도 입력 안 되어 있을 때, 예외 처리하기
#include <iostream>
#include <string>

using namespace std;

inline string& left_trim(string& s, const char* t = " \t\n\r\f\v")
{
	s.erase(0, s.find_first_not_of(t));
	return s;
}
inline string& right_trim(string& s, const char* t = " \t\n\r\f\v")
{
	s.erase(s.find_last_not_of(t) + 1);
	return s;
}

inline string& trim(string& s, const char* t = " \t\n\r\f\v")
{
	return left_trim(right_trim(s, t), t);
}

int main(void)
{
	string s;
	int count = 0;

	getline(cin, s);

	s = trim(s);

	if (s.size() != 0) {//단어가 입력 안 됐을 때 예외 처리
		for (int i = 0; i < s.size(); i++)
		{
			if (s.at(i) == ' ')
			{
				count++;
				continue;
			}
		}
		count++; //단어 수 = 공백 수 + 1
	}
	cout << count;
}

 

[참고 자료]

https://power-girl0-0.tistory.com/469

728x90

'Algorithm' 카테고리의 다른 글

[백준 - 2562번] 최댓값  (0) 2022.01.22
[백준 - 1157번] 단어 공부  (0) 2022.01.21
[백준 - 1008번] A/B  (0) 2022.01.21
[백준 - 1929번] 소수 구하기  (0) 2022.01.21
[백준 - 1978번] 소수 찾기  (0) 2022.01.21
Comments