gpt4 book ai didi

c - 为什么我没有得到质数而是得到从 2 到 98 的所有数字?

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

<分区>

# include <stdio.h>

int main()
{
int i,p,f=1;
printf("Prime Numbers till 99: \n");
for (p=2;p<99;p++)
{
for (i=2;i<p;i++)
if(p%i==0)
{
f=0;
break;
}

if(f=1)
printf("%d ",p);
}
return 0;
}

为什么我没有得到素数,而是得到了从 2 到 98 的所有数字?

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