real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = (((x * y) + (z * z)) + (z * z)) + (z * z)
end function
↓
real(8) function code(x, y, z)
real(8), intent (in) :: x
real(8), intent (in) :: y
real(8), intent (in) :: z
code = (x * y) + (z * ((z + z) + z))
end function
public static double code(double x, double y, double z) {
return (((x * y) + (z * z)) + (z * z)) + (z * z);
}
↓
public static double code(double x, double y, double z) {
return (x * y) + (z * ((z + z) + z));
}
def code(x, y, z):
return (((x * y) + (z * z)) + (z * z)) + (z * z)
↓
def code(x, y, z):
return (x * y) + (z * ((z + z) + z))
function code(x, y, z)
return Float64(Float64(Float64(Float64(x * y) + Float64(z * z)) + Float64(z * z)) + Float64(z * z))
end
↓
function code(x, y, z)
return Float64(Float64(x * y) + Float64(z * Float64(Float64(z + z) + z)))
end
function tmp = code(x, y, z)
tmp = (((x * y) + (z * z)) + (z * z)) + (z * z);
end
↓
function tmp = code(x, y, z)
tmp = (x * y) + (z * ((z + z) + z));
end