Logo

Programming-Idioms

This language bar is your friend. Select your favorite languages!
  • Ada

Idiom #79 Convert integer to floating point number

Declare the floating point number y and initialize it with the value of the integer x .

Y : constant Float := Float (X);
float y = (float)x;

The (float) isn't really necessary, unless x is a double type. The compiler will cast x automatically.

New implementation...