짜보았는데 도대체 어디가 틀린지 모르겠습니다ㅠㅠ
인풋 부분을 뭔가 잘못한 것 같다는 느낌은 드는데 정작 어디가 틀렸고 어떻게 고쳐야할지 감도 오지 않습니다ㅠㅠ
#include <stdio.h>
#define IN 1
#define OUT 0
int main()
{
int c, nw, nt, nl, state;
state = OUT;
nw = nt = nl = 0;
while ((c = getchar()) != EOF) {
if (c == '\t')
++nt;
if (c == '\n')
++nl;
if (c == ' ' || c == '\n' || c == '\t')
state = OUT;
else if (state == OUT) {
state = IN;
++nw;
}
}
printf("%d\n%d\n%d\n", nw, nt, nl);
}