为什么循环增量而不打印出循环次数?

时间:2015-11-10 12:20:43

标签: c input output user-input increment

请在下面提供我的代码。我试图获得8,3,1,8,1,1,1,1,1,1。对于我的代码输出中的周期,当用户输入45 23 6 12 0 0 0 0 0 0时。但由于某种原因,它将下一个数字减去1.所以我得到8,10,10,17,17,17,17,17,17,17。我试图解决这个问题,但我没做什么似乎有帮助。有人可以帮我指出发生这种情况的原因吗?

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

int sum_divisors(int); //Function Prototype

/*Just wanted to do an example to show you don't need
 *function prototypes if you write the function itself
 *before main.
 */
int cycles(int x){
    static int count = 1;
    int j;
    if(x == sum_divisors(x)){
        printf("%d%13d Cycle(s) \n", x, count);
    }else{
        x = sum_divisors(x);
        count++;
        printf("%d, ",x);
        cycles(x);
    }
}

int main(void){ //Start of main
    int count = 0;
    int x, sum;
    int i = 0;
    int nums [9];

    puts("Please enter 10 integers. Fill up the rest with 0s. Please only type in numbers if not you might not get the output you want.");

    while(scanf("%d ", &x) != EOF){
        if(x > 100){
            puts("Wrong input");
            exit(1);
        }else{
            count++;
            nums[i] = x;
            ++i;
        }           

        if(i == 9){
            break;
        }
    }

    for(i=0; i<count; i++){
        sum = sum_divisors(nums[i]);
        printf("%d, ", nums[i]);
        cycles(nums[i]);
    }

    puts("");

    return 0;
} //end of main

int sum_divisors(int n){

    int i;
    int sum = 0;
    int prime_ind = 0;

    if(n <= 1){
        sum = 0;
        return sum;
    }

    for(i=2; i<n; i++){
        if(n%i == 0){
            prime_ind = 1;
            break;
        }
    }

    if(prime_ind == 0){
        sum = 1;
    }else{
        for(i=1; i<((n/2)+1); i++){
            if(n%i == 0){
                sum += i;
            }
        }
    }
    return sum;
}

2 个答案:

答案 0 :(得分:2)

我查看了您的计划。 你的问题在于函数

 int cycles(int x){}

所以将其改为

int cycles(int x){
    static int count = 1;
    int j;
    if(x == sum_divisors(x)){
        printf("%d%13d Cycle(s) \n", x, count);
        count=1; // add this line 

    }else{
        x = sum_divisors(x);
        count++;
        printf("%d, ",x);
        cycles(x);
    }
}

这里静态变量在新的循环()调用时未初始化。

答案 1 :(得分:1)

int cycles(int x){
    static int count = 1;

这样的静态变量将在第一次执行 时初始化为给定值之后,它将在多个函数调用中保持其值,不仅是递归的,而且还是#34; fresh&#34;来自main()的来电。您只需保持递增count。它永远不会重置为1

我认为这不是(确切地)你想要的。很难说,真的,因为你没有告诉我们你的功能实际上是什么打算做什么 - 既不是问题也不是,正如我希望的那样,在评论中。我并不介意对这些信息进行逆向工程。

此时我也停止检查您的代码,因为static很可能是您问题的核心。可能会有更多问题,例如评论中暗示的越界访问。