Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.math.BigInteger;

public class Main {

    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);
        System.out.println(f2);
    }
}