-
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
18
19
20
21
22
23
24
25
26
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
int main (void)
{
float un_numero;
char tecla_repetir;
do {
system ("cls");
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');
printf ("\250Deseas repetir el proceso? (S/N): ");
do {
tecla_repetir = (char) getch();
} while (tecla_repetir!='s' && tecla_repetir!='n' && tecla_repetir!='S' && tecla_repetir!='N');
putchar ('\n');
} while (tecla_repetir=='s' || tecla_repetir=='S');
return EXIT_SUCCESS;
}
#include <stdlib.h>
#include <conio.h>
int main (void)
{
float un_numero;
char tecla_repetir;
do {
system ("cls");
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');
printf ("\250Deseas repetir el proceso? (S/N): ");
do {
tecla_repetir = (char) getch();
} while (tecla_repetir!='s' && tecla_repetir!='n' && tecla_repetir!='S' && tecla_repetir!='N');
putchar ('\n');
} while (tecla_repetir=='s' || tecla_repetir=='S');
return EXIT_SUCCESS;
}