11 lines
205 B
C
11 lines
205 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(void) {
|
|
int n;
|
|
double x;
|
|
printf("Entrez un réel : ");
|
|
n = scanf("%lf", &x);
|
|
printf("notation scentifique: %f\n", x*x);
|
|
return EXIT_SUCCESS;
|
|
} |