• Lenguaje

    C

  • Descripción

    Pide que se ingresen dos números y muestra si son iguales o no.

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

int main (void)
{
    float a, b;
    printf ("Ingresa el valor de a: ");
    scanf ("%f", &a);
    (void) getchar ();
    printf ("Ingresa el valor de b: ");
    scanf ("%f", &b);
    (void) getchar ();
    if(a==b)
        printf ("Los n\243meros ingresados son iguales.\n");
    else
        printf ("Los n\243meros ingresados son diferentes.\n");
    putchar ('\n');
    system ("pause");
    return EXIT_SUCCESS;
}