You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
579 B
26 lines
579 B
#include <stdio.h>
|
|
/*Ошибка при переносе слова на новую строку*/
|
|
#define IN 1 /* внутри слова */
|
|
#define OUT 0 /* вне слова */
|
|
|
|
int main()
|
|
{
|
|
int c, nl, nw, nc, state;
|
|
state = OUT;
|
|
nl = nw = nc = 0;
|
|
|
|
while ((c = getchar()) != EOF) {
|
|
++nc;
|
|
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);
|
|
|
|
return 0;
|
|
} |