Asal Sayı Hesaplama Programı

 Asal sayı hesaplama programı 

Kod :

#include <stdio.h>
int i,c,d;
int main()
{

for(i=2;i<=1000;i++)
{ d=1;
for (c=2;c<i;c++)
{
if (i%c==0)
{d=0;}
}

if (d==1) {printf("%d\n",i);}
}


system("PAUSE");
return 0;
}

Comments

Popular posts from this blog