标题:[转载]退出循环EOF
取消只看楼主
lanyingcangl
Rank: 1
等 级:新手上路
帖 子:85
专家分:0
注 册:2007-5-30
 问题点数:0 回复次数: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 
2007-05-30 15:35



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-143555-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.126413 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved