Declare the floating point number y and initialize it with the value of the integer x .
import java.math.BigDecimal;
float y = new BigDecimal(x).floatValue();
Float y = Float.parseFloat(String.valueOf(x));
float y = x;
int x = 10 float y = (float)x; System.out.println(y);
Y : constant Float := Float (X);
float y = (float)x;
let y = float_of_int(x)
(def y (float x))
float y = static_cast<float>(x);
import std.conv : to;
int x; float y = to!float(x); // or float y = cast(float) x;
double y = x.toDouble();
y = x / 1
real :: y y = x
y := float64(x)
y = fromInteger x :: Double
let y = x + .0
(defparameter *y* (float x))
y = x + .0
y = (16 ^ 13) + x - (16 ^ 13)
$y = (float) $x;
var y: single; begin y := x; end;
my $y = $x;
y = float(x)
y = x.to_f
let y = x as f64;
No security, no password. Other people might choose the same nickname.