gpt4 book ai didi

c - 无法计算击键数字所占的百分比

转载 作者:行者123 更新时间:2023-11-30 21:22:05 25 4
gpt4 key购买 nike

下面的代码应该计算按下的按键数量并将其与按下的数字键的百分比一起打印在屏幕上。当我运行代码时,百分比始终为 0。这是为什么?

#include <stdio.h>
#include <stdlib.h>
#include <conio.h>


int main()
{
int c,count=0,count1=0;
float d;
while ((c=getch()))
{
count = count++;
if (c=='1'||c=='2'||c=='3'||c=='4'||c=='5'||c=='6'||c=='7'||c=='8'||c=='9'||c=='0')
{
count1=count1++;
}
if (c=='!')
{
d=(count1/count*100);
printf("\nnumbers of keys is %d percentage of number keys is %.3d percent",count,d);
}

}
return 0;

}

最佳答案

线条

count = count++;

count1 = count1++;

是未定义的行为,所以所有的赌注都没有。即使它不是未定义的行为,它也不会执行您想要的操作,因为 x++ 返回增量之前的 x 值。

就这样吧:++count;++count1;

关于c - 无法计算击键数字所占的百分比,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8749039/

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