Description Of BigInteger: floatValue()
The java.math.BigInteger.floatValue() converts this BigInteger to a floatBigInteger.floatValue() method returns this BigInteger converted to a float
Code Example Java BigInteger
import java.math.BigInteger;
public class BigIntegerExam {
public static void main(String[] args) {
// assign values to bi1, bi2
BigInteger bi1 = new BigInteger("123");
BigInteger bi2 = new BigInteger("-123");
// assign float values of bi1, bi2 to f1, f2
Float f1 = bi1.floatValue();
Float f2 = bi2.floatValue();
// print f1, f2 values
System.out.println(f1); // 123.0
System.out.println(f2); // -123.0
}
}
ไม่มีความคิดเห็น :
แสดงความคิดเห็น