DEV/BUT1/DEV1.1/Maths/Formules/logartihme-3.c

19 lines
200 B
C
Raw 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=-3;
printf("La valeur du logartihme est :%lf\n" , log(nombre));
return EXIT_SUCCESS;
}