-
Lenguaje
C
-
Descripción
Lee dos valores desde el teclado y determinar si están en orden creciente o decreciente.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#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 ("Orden creciente\n");
if(a>b)
printf ("Orden decreciente\n");
if(a==b)
printf ("Son iguales\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 ("Orden creciente\n");
if(a>b)
printf ("Orden decreciente\n");
if(a==b)
printf ("Son iguales\n");
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}