19 lines
396 B
C
19 lines
396 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <math.h>
|
|
|
|
int main (void)
|
|
{
|
|
|
|
double nombre=0;
|
|
|
|
printf("Entrez un réel :\n");
|
|
scanf("%lf", &nombre);
|
|
printf("Le nombre réel est : %lf\n" , nombre);
|
|
int x = (int) trunc(nombre);
|
|
int y = (int) trunc(nombre*10);
|
|
printf("Le chiffre des unités est : %d\n" , x%10);
|
|
printf("Le chiffre des dixièmes est : %d\n" , y%10);
|
|
return 0;
|
|
}
|