gpt4 book ai didi

计算字符串中的位数

转载 作者:行者123 更新时间:2023-11-30 20:18:03 24 4
gpt4 key购买 nike

我需要实现一个可以计算字符串中位数的函数,这是我的代码,它不起作用,我需要知道问题是什么。int main() {

/* Enter your code here. Read input from STDIN. Print output to STDOUT */
char s[100];
scanf("%s",s);
int i,j=0;
for(i=0;i<10;i++)
{
int freq=0;
while(s[j] != '\0')
{
if(s[j] == i +'0')
{
freq++;
}
j++;
}
printf("%d ",freq);

}
return 0;

}

最佳答案

每次 for 循环迭代后将 j 重置为 0

关于计算字符串中的位数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55327159/

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