This commit is contained in:
NaiJi ✨ 2024-04-21 17:03:21 +04:00
parent b10de3206c
commit 47e0367161
1 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,26 @@
#include <stdio.h>
#define IN 1
#define OUT 0
main()
{
int c, nl, nw, nc, state;
nl = nw = nc = 0;
while ((c = getchar()) != EOF)
{
++nc;
// We do not handle \b, so words count get messed up if we erase anything
if (c == '\n')
++nl;
if (c == ' ' || c == '\n' || c == '\t')
state = OUT;
else if (state == OUT)
{
state = IN;
++nw;
}
}
printf("%d %d %d\n", nl, nw, nc);
}