Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

import java.math.BigInteger;
import java.util.Random;

public class Main {
    public static void main(String[] args) {
        Random randomGenerator = new Random();
        BigInteger randomInteger = new BigInteger(1024, randomGenerator);
        System.out.println(randomInteger);
    }

}