我正在研究一个教科书问题,我在下面编写了这段代码来识别用户输入的正数下方的所有素数:
#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 上试过这个。输出是一样的。