/**
* <h1>Ejemplo del uso de Breaks en Scala</h1>
* @author Fer Carraro
* @date 03-03-2015
* @description Programa que realiza un ciclo infinito usando while
*/
import scala.util.control._
object EjemploScala{
def main(args: Array[String]): Unit = {
var entrada:String=""
var numero:Int=0
val loop=new Breaks
while(true){
Console.print("Numero:")
entrada=readLine()
try {
/*al teclear la palabra 'quit' se rompe el ciclo*/
if(entrada.equalsIgnoreCase("quit")){
loop.break
}else{
numero=Integer.parseInt(entrada)
Console.println(numero)
}
} catch {
case e: Exception => Console.println("Error, solo numeros")
}
}//fin while
}//fin main
}//fin object
Al teclear la palabra 'quit' se rompe el ciclo
Be the first to comment
You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.