본문 바로가기

알고리즘/백준

단어의 개수

#include <stdio.h>

int main(void) 
{
	char str[1000000] = { 0 };
	int cnt = 1;

	gets(str); //공백 처리를 위함

	if (str[0] == ' ') //처음
		cnt = cnt - 1;

	for (int i = 0; str[i] != 0; i++) 
	{
		if (str[i] == ' ')
		{
			cnt++;
			if (str[i + 1] == 0)  //마지막
			{ 
				if (str[i] == ' ')
					cnt = cnt - 1;
			}
		}
	}
	printf("%d \n", cnt);
	return 0;
}

 

'알고리즘 > 백준' 카테고리의 다른 글

다이얼  (0) 2019.10.18
상수  (0) 2019.10.16
단어 공부  (0) 2019.10.12
문자열 반복  (0) 2019.10.10
숫자의 합  (0) 2019.10.08