当前位置: 代码迷 >> C语言 >> [转载]退出循环EOF
  详细解决方案

[转载]退出循环EOF

热度:465   发布时间:2007-05-30 15:35:58.0
[转载]退出循环EOF

某些程序需要我们输入 EOF ( end of file 文件结束标记 ) 来退出循环。例如,下面这个程序就需要我们输入 EOF 才会退出循环。

#include <stdio.h>
#define IN 1
#define OUT 0

int main( void )
{
int c, nw = 0, state = OUT;
while ( ( c=getchar() ) != EOF )
{
if (c == '\t' || c == ' ' || c == '\n')
state = OUT;
else if (state == OUT)
{
state = IN;
nw++;
}
}
printf("%d",nw);
return 0;
}

在 windows 系统下,输入 EOF 的方法是:新起一行,按住 ctrl ,然后再按下 z ;而在 unix/linux 下,是 ctrl + d 。

搜索更多相关的解决方案: EOF  

----------------解决方案--------------------------------------------------------
  相关解决方案