-
Lenguaje
C
-
Descripción
Permite determinar si un valor cualquiera es positivo, negativo o si este es neutro (cero).
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
float numero;
printf ("Ingresa el valor de numero: ");
scanf ("%f", &numero);
(void) getchar ();
if(numero>0)
printf ("Positivo\n");
if(numero==0)
printf ("Neutro\n");
if(numero<0)
printf ("Negativo\n");
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
int main (void)
{
float numero;
printf ("Ingresa el valor de numero: ");
scanf ("%f", &numero);
(void) getchar ();
if(numero>0)
printf ("Positivo\n");
if(numero==0)
printf ("Neutro\n");
if(numero<0)
printf ("Negativo\n");
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}