Android Int to Float Convert IntToFloat(int i)

Here you can find the source of IntToFloat(int i)

Description

Int To Float

Declaration

public static float IntToFloat(int i) 

Method Source Code

//package com.java2s;

public class Main {
    public static float IntToFloat(int i) {
        return Float.intBitsToFloat(i);
    }//from w w  w . ja  v a2s  . c o  m
}