gpt4 book ai didi

c++ - Printf 不打印输出

转载 作者:行者123 更新时间:2023-11-28 07:06:57 27 4
gpt4 key购买 nike

为什么这个程序不打印任何输出。

#include<stdio.h>

int main()
{
int c, i, nwhite, nother;
nwhite = nother = 0;
int ndigit[10];

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;

for(i=0; i<10; ++i)
printf("%d\n",ndigit[i]);
printf("%d - %d", nwhite, nother);
}

输入:它继续获取输入直到 EOF。

最佳答案

试试这个:

for(i=0; i<10; ++i)
printf("%i\n",ndigit[i]);
printf("%i - %i", nwhite, nother);

关于c++ - Printf 不打印输出,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21647929/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com