303
>
#include <stdio.h>
#include <conio.h>
#include <math.h>
main()
{
//se tiparesc primele n nr prime
int ok,x,k,poz;
printf("Dati x=");
scanf("%d",&x);
k=1; poz=1;
do
{
ok=1;
for (int i=2; i<=sqrt(k);i++)
if (k%i==0) ok=0;
if (ok==1) { printf(" %d ",k); k++; poz++; }
else k++;
}
while(x>=poz);
getch();
return 0;
}
0 comentarii