gpt4 book ai didi

c - 找出数字 5 在 0 - 4322 内出现了多少次

转载 作者:太空宇宙 更新时间:2023-11-04 05:09:00 25 4
gpt4 key购买 nike

这段代码似乎对我不起作用。它输出数字 17,这显然是错误的。如果遇到 5、15、25、50 等数字,计数器应该上升。

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>

int main(void) {
int i;
int counter;
char num[4322];

for (i = 1; i < sizeof(num); i++){
num[i] = i;
if ( strstr(&num[i], "5")){
counter = counter + 1;
}
}

printf("%d", counter);
return 0;
}

最佳答案

您没有将数字转换为字符串,而是将非空终止字符串传递给 strstr()。您还忘记了初始化 counter

您应该一位一位地检查数字。试试这个:

#include <stdio.h>

int main(void) {
int max = 4322;
int target = 5;
int i, cur, counter = 0;
for (i = 1; i <= max; i++) {
for (cur = i; cur > 0; cur /= 10) {
if (cur % 10 == target) counter++;
}
}
printf("%d\n", counter);
return 0;
}

关于c - 找出数字 5 在 0 - 4322 内出现了多少次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36756225/

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