标签:clu int main amp scanf 判断 scan while \n
//判断一个数是不是素数
#include <stdio.h>
int main()
{
int t;
while(1)
{
scanf("%d",&t);
int i,x,z=0;
for(i=1;i<t;i++)
{
x=t%i;
if(x==0)
z++;
}
if(z<2)
printf("该数是素数。\n");
else
printf("该数不是素数。\n");
}
}
标签:clu int main amp scanf 判断 scan while \n
原文地址:https://www.cnblogs.com/xderbyy/p/9497730.html