-
Lenguaje
C
-
Descripción
Lee un número por teclado y dice si es positivo o negativo.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
float un_numero;
printf ("Ingresa el valor de un numero: ");
scanf ("%f", &un_numero);
(void) getchar ();
if(un_numero<0)
printf ("Negativo\n");
else
printf ("Positivo\n");
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
float un_numero;
printf ("Ingresa el valor de un numero: ");
scanf ("%f", &un_numero);
(void) getchar ();
if(un_numero<0)
printf ("Negativo\n");
else
printf ("Positivo\n");
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}