Programacion
Enviado por victor vasquez cuevas • 11 de Octubre de 2015 • Apuntes • 526 Palabras (3 Páginas) • 96 Visitas
[pic 1]
[pic 2]
import javax.swing.JOptionPane;
public class Numenor {
int menor;
int r=Integer.parseInt(JOptionPane.showInputDialog(" INGRESA RENGLONES : "));
int c=Integer.parseInt(JOptionPane.showInputDialog(" INGRESA COLUMNAS : "));
int matriz[][]=new int [r][c];
public void leyendo(){
for(int c1=0;c1
for(int c2=0;c2
matriz[c1][c2]=Integer.parseInt(JOptionPane.showInputDialog("INGRESE NUMERO "));
}
}
}
public void impMatriz(){
for(int c1=0;c1
for(int c2=0;c2
System.out.print("["+matriz[c1][c2]+"]");
}
System.out.println("");
}
}
public void menor(){
for(int c1=0;c1
for(int c2=0;c2
if(matriz[c1][c2]
menor=matriz[c1][c2];
}
}
}
}
public void impMenor(){
System.out.println(" EL NUMERO MENOR ES "+menor);
}
public static void main(String[] args) {
Numenor obj=new Numenor();
obj.leyendo();
obj.impMatriz();
obj.menor();
obj.impMenor();
}
}
...