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.
Test_C/1.9.txt

24 lines
327 B

#include <stdio.h>
int main()
{
int c;
int ws = 0;
while ((c = getchar()) != EOF)
{
if (c == ' ')
{
++ws;
if (ws < 2)
printf("%c", c);
}
else
{
printf("%c", c);
ws = 0;
}
}
return 0;
}