Skip to content

Instantly share code, notes, and snippets.

@caioerick
Last active December 21, 2015 19:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save caioerick/6354193 to your computer and use it in GitHub Desktop.
Save caioerick/6354193 to your computer and use it in GitHub Desktop.
QUESTÃO: Faça um programa em linguagem C que receba um valor inteiro N e mostre os N números primos, iniciando de 2.
#include<stdio.h>
#include<stdlib.h>
int main(int narg, char *argv[]) {
int n, i;
scanf("%d", &n);
for(i=2;i<=n;i++) {
if(i%2 == 1) {
printf("%d\n", i);
}
}
return EXIT_SUCCESS;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment