Hola, me podrían ayudar necesito saber como encontrar el numero mayor y menor de una matriz de jtextfields, ya que he intentado varias veces y no encuentro como hacerlo.
código:
public class ModoG extends JFrame implements ActionListener{
Container Contenedor=null;
JTextField [][] valores = new JTextField[10][6];
double mayor=0;
double menor=0;
ModoG(){
for (int i = 0; i < valores.length; i++) {
for (int j = 0; j < valores.length; j++) {
valores[j]=new JTextField();
valores[j].setBackground(new Color(91, 91, 95));
valores[j].setFont(new Font("Times New Roman", 0, 14));
valores[j].setForeground(new Color(255, 255, 255));
valores[j].setBounds((i+5)*75,(j+3)*64 , 62, 25);
valores[j].setEditable(false);
this.add(valores[j]);
}
}