-
Lenguaje
C
-
Descripción
Leer dos valores A y B e indicar cual de las dos restas (B-A) o (A-B) es positiva.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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 ("La resta A-B es positiva.\n");
if(A<B)
printf ("La resta B-A es positiva.\n");
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#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 ("La resta A-B es positiva.\n");
if(A<B)
printf ("La resta B-A es positiva.\n");
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}