fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #include <math.h>
  4. int main ()
  5. {
  6. int N;
  7. printf ("Digite um numero: ");
  8. scanf("%d", &N);
  9. if (N<0)
  10. printf ("Este número não é positivo\n");
  11. if(N % 2 == 0)
  12. printf ("Este numero e par\n");
  13. else
  14. printf("Este número é impar");
  15. system ("PAUSE");
  16. }
Success #stdin #stdout #stderr 0s 2296KB
stdin
5
stdout
Digite um numero: Este número é impar
stderr
sh: PAUSE: not found