Prueba utlizando etiquetas para salir de los dos bucles:
Código java:
Ver originalimport MiLibreria.Leer;
import java.io.*;
public class Temperatura{
public static void main
(String[] args
){
int t;
float [][] M = new float[12] [31];
System.
out.
println("Puede salir escribiendo \"salir\". ");
bucleSalida:
for(float f=0; f<12; f++) {
for(int c=0; c<31; c++) {
System.
out.
println("Introduce el valor de la temperatura: "); t = Leer.datoInt();
if (t==LO QUE QUIERAS)
{
break bucleSalida;
}
}
}
}
}