标题:新手求助,求哪位高手帮忙看下这段程序什么问题
只看楼主
matouw773z
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2017-9-29
结帖率:50%
已结贴  问题点数:20 回复次数:2 
新手求助,求哪位高手帮忙看下这段程序什么问题
下面是我从书上摘的程序、想在电脑上运行下,编译都通过了,但是输入一段字符之后按回车键没用反应只是换行并不出现结果
请问高手这是怎么回事?
#include <stdio.h>
/* 统计各个数字、空白符及其他字符分别出现的次数 */
main ( )
{
int c, i, nwhite, nother;
int ndigit[10];

nwhite = nother = 0;
for ( i =0; i < 10; ++i )
ndigit[i] = 0;

while ( ( c = getchar() ) != EOF )
    if ( c >= '0' && c <= '9' )
    ++ndigit[c - '0'];
else if ( c == ' ' ||c == '\n' || c == '\t' )
++nwhite;
else
++nother;
printf( "digits =" );
for ( i =0; i < 10; ++i )
printf( " %d", ndigit[i] );
printf( ", white space = %d, other = %d/n", nwhite, nother);
}

















搜索更多相关主题的帖子: 出现 int for ++i printf 
2017-09-29 14:21
吹水佬
Rank: 20Rank: 20Rank: 20Rank: 20Rank: 20
等 级:版主
威 望:432
帖 子:10064
专家分:41463
注 册:2014-5-20
得分:20 
while ( ( c = getchar() )!='\n' && c!=EOF )

2017-09-29 14:47
matouw773z
Rank: 1
等 级:新手上路
帖 子:5
专家分:0
注 册:2017-9-29
得分:0 
果然行了,知道了,非常感谢
2017-09-29 15:01



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




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

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