-
Lenguaje
C
-
Descripción
Lea un número y obtenga el signo, su parte entera y su parte fraccionaria.
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>
#include <math.h>
int main (void)
{
float parte_entera, parte_fraccionaria, un_numero;
printf ("Ingresa el valor de un numero: ");
scanf ("%f", &un_numero);
(void) getchar ();
parte_entera=floor(un_numero);
parte_fraccionaria=un_numero-parte_entera;
if(un_numero>=0)
printf ("Signo positivo\n");
else
printf ("Signo negativo\n");
printf ("Valor de parte entera: %g\n", parte_entera);
printf ("Valor de parte fraccionaria: %g\n", parte_fraccionaria);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}
#include <stdlib.h>
#include <math.h>
int main (void)
{
float parte_entera, parte_fraccionaria, un_numero;
printf ("Ingresa el valor de un numero: ");
scanf ("%f", &un_numero);
(void) getchar ();
parte_entera=floor(un_numero);
parte_fraccionaria=un_numero-parte_entera;
if(un_numero>=0)
printf ("Signo positivo\n");
else
printf ("Signo negativo\n");
printf ("Valor de parte entera: %g\n", parte_entera);
printf ("Valor de parte fraccionaria: %g\n", parte_fraccionaria);
putchar ('\n');
system ("pause");
return EXIT_SUCCESS;
}