Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/02/2012, 03:48
Blade_Stom
 
Fecha de Ingreso: octubre-2007
Mensajes: 394
Antigüedad: 17 años, 2 meses
Puntos: 2
Respuesta: Como hago un break para salir

Prueba utlizando etiquetas para salir de los dos bucles:


Código java:
Ver original
  1. import MiLibreria.Leer;
  2.     import java.io.*;
  3.      
  4.     public class Temperatura{
  5.         public static void main (String[] args){
  6.            
  7.             int t;
  8.            
  9.             float [][] M = new float[12] [31];
  10.            
  11.             System.out.println("Puede salir escribiendo \"salir\". ");
  12.            
  13.           bucleSalida:
  14.             for(float f=0; f<12; f++) {
  15.                
  16.                 for(int c=0; c<31; c++) {
  17.                     System.out.println("Introduce el valor de la temperatura: ");
  18.                     t = Leer.datoInt();
  19.                    if (t==LO QUE QUIERAS)
  20.                        {
  21.                           break bucleSalida;
  22.                         }
  23.                 }
  24.                 System.out.println();
  25.                
  26.                 }
  27.             }
  28.              
  29.            
  30.         }