(1) ÅДàij”µžéËØ”µ
ËØ”µÊÇÖ¸Ö»Äܱ»×Ô¼ººÍ1Õû³ýµÄ”µ
int prime(int n)
{
int m;
for(m=2;m<=sqrt(n);m++)
if(n%m==0) return 0;
return 1;
}