Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- new n=10,c,i=3;
- for(new count;count<=n;) {
- for(c=2;c<=i-1;c++) {
- if ( i%c == 0 )
- break;
- }
- if(c==i) {
- printf("%d",i);
- count++;
- }
- i++;
- }
- // o n é o numero maximo de numeros primos
- new c,i=3,fim=50;
- while(i<fim) {
- for(c=2;c<=i-1;c++) {
- if ( i%c == 0 )
- break;
- }
- if(c==i) {
- printf("%d",i);
- }
- i++;
- }
- //o fim é até ao qual queremos saber os primos
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement