Advertisement
Josif_tepe

Untitled

Nov 2nd, 2024
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.72 KB | None | 0 0
  1. import java.util.Random;
  2. public class Zadaca {
  3.  
  4.     public static void main(String[] args) {
  5.         int[][] mat = new int[5][5];
  6.         Random random = new Random();
  7.         for(int i = 0; i < 5; i++) {
  8.             for(int j = 0; j < 5; j++) {
  9.                 mat[i][j] = random.nextInt(10);
  10.             }
  11.         }
  12.  
  13.         for(int i = 0; i < 5; i++) {
  14.             for(int j = 0; j < 5; j++) {
  15.                 System.out.print(mat[i][j] + " ");
  16.             }
  17.             System.out.println();
  18.         }
  19.  
  20.        for(int j = 0; j < 5; j++) {
  21.         int product = 1;
  22.         for(int i = 0; i < 5; i++) {
  23.             product *= mat[i][j];
  24.         }
  25.         System.out.println(product);
  26.        }
  27.  
  28.     }
  29.    
  30. }
  31.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement