• Lenguaje

    C

  • Descripción

    Digite un número entero y muestre el mensaje "par positivo" o "par negativo" según sea el caso.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include <stdio.h>
#include <stdlib.h>

int main (void)
{
    float numero_entero;
    printf ("Ingresa el valor de numero entero: ");
    scanf ("%f", &numero_entero);
    (void) getchar ();
    if(numero_entero>=0&&numero_entero%2==0)
        printf ("Par positivo\n");
    if(numero_entero>=0&&numero_entero%2!=0)
        printf ("Impar positivo\n");
    if(numero_entero<0&&numero_entero%2==0)
        printf ("Par negativo\n");
    if(numero_entero<0&&numero_entero%2!=0)
        printf ("Impar negativo\n");
    putchar ('\n');
    system ("pause");
    return EXIT_SUCCESS;
}