DEV/BUT1/DEV1.1/Maths/Formules/formules.c

17 lines
204 B
C
Raw Permalink Normal View History

2024-02-01 13:55:03 +01:00
#include <stdlib.h>
#include <stdio.h>
#include <math.h>
int main(void)
{
double nombre=0.5;
double nombre2=M_PI;
printf("%lf => %lf\n" , nombre, sqrt(fabs(log(nombre))));
return 0;
}