How to generate N pairs of random digits in Java

1 Answer

0 votes
import java.util.Random;

public class Main {
    // Method to generate and print N random digit pairs
    public static void generateRandomPairs(int N) {
        Random rand = new Random();
        System.out.println("Random pairs of digits:");
        for (int i = 0; i < N; i++) {
            int firstDigit = rand.nextInt(10);  // Random digit between 0 and 9
            int secondDigit = rand.nextInt(10); // Random digit between 0 and 9
            System.out.printf("(%d, %d)%n", firstDigit, secondDigit);
        }
    }

    public static void main(String[] args) {
        int N = 15;
        generateRandomPairs(N);
    }
}

 
 
/*
run:
 
Random pairs of digits:
(6, 9)
(0, 3)
(1, 4)
(4, 9)
(8, 7)
(1, 9)
(1, 9)
(3, 0)
(9, 6)
(7, 7)
(5, 6)
(3, 4)
(5, 2)
(0, 1)
(9, 1)
 
*/

 



answered Aug 11, 2025 by avibootz
...