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,855 questions

51,776 answers

573 users

How to fill a matrix with 1 and 0 in random locations with Java

1 Answer

0 votes
import java.util.Random;

public class Main {
    static final int ROWS = 5;
    static final int COLS = 4;

    public static void main(String[] args) {
        int[][] matrix = new int[ROWS][COLS];
        
        fillMatrixWithRandom0and1(matrix, ROWS, COLS);
        
        printMatrix(matrix, ROWS, COLS);
    }

    static void fillMatrixWithRandom0and1(int[][] matrix, int rows, int cols) {
        Random rand = new Random();

        // Fill the matrix with random 0s and 1s
        for (int i = 0; i < rows; ++i) {
            for (int j = 0; j < cols; ++j) {
                matrix[i][j] = rand.nextInt(2); // Generates either 0 or 1
            }
        }
    }

    static void printMatrix(int[][] matrix, int rows, int cols) {
        for (int i = 0; i < rows; ++i) {
            for (int j = 0; j < cols; ++j) {
                System.out.print(matrix[i][j] + " ");
            }
            System.out.println();
        }
    }
}


/*
run:

1 0 0 1 
0 0 1 0 
1 1 1 1 
0 0 1 1 
0 0 1 1 

*/

 



answered Jan 24, 2025 by avibootz

Related questions

1 answer 86 views
1 answer 83 views
1 answer 79 views
1 answer 66 views
1 answer 71 views
1 answer 64 views
...