以每行一个单词的形式打印输入
//Write a program that prints its input one word per line.
#include <stdio.h>
int main(void)
{
int c;
int inspace= 0;
while((c = getchar()) != EOF)
{
if(c == ' ' || c == '\t' || c == '\n')
{
if(inspace == 0)
{
inspace = 1;
putchar('\n');
}
}
else
{
inspace = 0;
putchar(c);
}
}
return 0;
}
转自《C程序设计语言》
/上述程序中的inspace省略也可,如下所示
#include <stdio.h>
int main(void)
{
int c;
int inspace= 0;
while((c = getchar()) != EOF)
{
if(c == ' ' || c == '\t' || c == '\n')
{
// if(inspace == 0)
// {
// inspace = 1;
putchar('\n');
// }
}
else
{
// inspace = 0;
putchar(c);
}
}
return 0;
}
执行结果,如输入:zh ah zh
输出为:zh
ah
zh