Stiven Palate

Generation

generate functionMon, 12 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.

public class Matriz { private int matriz[][]; private int filas; private int columnas; private int mayor; private int menor; private int posicionmayor; private int posicionmenor; Matriz(int n, int m) { this.matriz = new int[n][m]; this.filas = n; this.columnas = m; this.mayor = 0; this.menor = 0; this.posicionmayor = 0; this.posicionmenor = 0; } void llenarMatriz() { for (int i = 0; i < filas; i++) { for (int j = 0; j < columnas; j++) { matriz[i][j] = (int) (Math.random() * 100); } } } void mostrarMatriz() { for (int i = 0; i < filas; i++) { for

Questions about programming?Chat with your personal AI assistant