Odpowiedź:
#include <math.h>
const double PI = 3.14;
double Calc( double LC, double RC )
{
return 1.0 / ( 2*PI*sqrt(LC - (RC*RC)) );
}
" Life is not a problem to be solved but a reality to be experienced! "
© Copyright 2013 - 2024 KUDO.TIPS - All rights reserved.
Odpowiedź:
#include <math.h>
const double PI = 3.14;
double Calc( double LC, double RC )
{
return 1.0 / ( 2*PI*sqrt(LC - (RC*RC)) );
}