1

我正在研究一个教科书问题,我在下面编写了这段代码来识别用户输入的正数下方的所有素数:

#include <stdio.h>

int main(void)
{
    int j, input, notaprime;

    scanf_s("%d", &input);

    printf("List of prime numbers:\n");
    for (; input >= 2; input--)
    {
        notaprime = 0;
        for (j = 2; j < input; j++) //OR (for(j = 2; j*j <= input; j++)
        {
            if ((input % j) == 0)
            {
                notaprime = 1;
                break;
            }
            else
            {
                ;
            }
        }

        if (notaprime)
        {
            ;
        }
        else
        {
            printf("%d\n", input);
        }
    }

    return 0;
}

当输入 30 作为输入时,输出如下:

30
List of prime numbers:
29
23
19
17
13
11
7
5
3
2
Press any key to continue . . .

但是,当我更改内部 for 循环中的关系运算符时:

        for (j = 2; j < input; j++)

至:

        for (j = 2; j <= input; j++) //Changed from less than to less than equals

以下成为输入值 30 的输出:

30
List of prime numbers:
Press any key to continue . . .

现在,素数不再打印了,但我想不出任何合乎逻辑的原因。我的大脑现在因想到这应该有效的可能原因而感到痛苦。请帮忙。谢谢!

我在代码块 16.01 和 Visual Studio Community 2015 上试过这个。输出是一样的。

4

1 回答 1

3

您的代码中存在逻辑错误

我们知道素数是除以 1 或自身的数

当你这样做时,for (j = 2; j < input; j++)你检查下面的所有数字input是否正确。

但是当你这样做时,你会for (j = 2; j <= input; j++)检查到input.

(input % j) == 0由于每个数字每次都被自己划分,notaprime = 1;因此语句为真,因此不产生输出

于 2017-01-05T13:44:04.630 回答