Как мне отформатировать цикл while для проверки на наличие дубликатов и, если есть дубликаты, чтобы не возвращать эти числа?
import java.util.Scanner;
public class LotterySimulator
{
public static void main(String[] args)
{
final int POOL1 = 68;
final int POOL2 = 25;
long ball1, ball2, ball3, ball4, ball5, pball;
ball1 = Math.round(POOL1*Math.random()) + 1;
ball2 = Math.round(POOL1*Math.random()) + 1;
ball3 = Math.round(POOL1*Math.random()) + 1;
ball4 = Math.round(POOL1*Math.random()) + 1;
ball5 = Math.round(POOL1*Math.random()) + 1;
pball = Math.round(POOL2*Math.random()) + 1;