Stiven Palate

Generation

generate functionSun, 11 Jun 2023

Escribir un programa que lea las dimensiones de una matriz, la visualice y encuentre su mayor y su menor elemento y sus posiciones respectivas.

import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner entrada = new Scanner(System.in); int matriz[][] = new int[4][4]; int aux = 0; int aux2 = 0; int mayor = 0; int menor = 0; for (int i = 0; i < matriz.length; i++) { for (int j = 0; j < matriz[0].length; j++) { matriz[i][j] = (int) (Math.random() * 10); System.out.print(matriz[i][j] + " "); } System.out.println(" "); } menor = matriz[0][0]; for (int i = 0; i < matriz.length; i++) { for (int j = 0; j < matriz[0].length; j++) { if (matriz[i][j] > mayor)

Questions about programming?Chat with your personal AI assistant