Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,938 questions

51,875 answers

573 users

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
...