17 lines
204 B
C
17 lines
204 B
C
|
#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;
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|