(FPCore (x y z) :precision binary64 (* x (sqrt (- (* y y) (* z z)))))
double code(double x, double y, double z) {
return x * sqrt(((y * y) - (z * z)));
}
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = x * sqrt(((y * y) - (z * z)))
end function
public static double code(double x, double y, double z) {
return x * Math.sqrt(((y * y) - (z * z)));
}
def code(x, y, z):
return x * math.sqrt(((y * y) - (z * z)))
function code(x, y, z)
return Float64(x * sqrt(Float64(Float64(y * y) - Float64(z * z))))
end
function tmp = code(x, y, z)
tmp = x * sqrt(((y * y) - (z * z)));
end