找出素数~~~~怎么会出问题了,请高手帮忙指出
#include<stdlib.h>#include<stdio.h>
#include<math.h>
void main()
{
int num[100];
int i,j;
for(i=0;i<20;i++)
{
num[i]=rand()%1000;
}
printf("Here is the list before of the sort\n");
for(i=0;i<20;i++)
{
printf("%4d",num[i]);
}
printf("\nHere is the list of sushu\n");
for(i=0;i<20;i++)
{
for(j=2;i%j!=0;j++)
if(j>sqrt(num[i]))
printf("%4d",num[i]);
}
}声明下~~~第3个for和if之间空格也是代码~~~