Advertisement
TenshiNoKioku

Main

Jan 26th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.49 KB | None | 0 0
  1. public class MainClass {
  2.  
  3.     public static void main(String[] args){
  4.    
  5.         Menu menu = new Menu();
  6.         boolean again = true;
  7.         do {
  8.            
  9.             try {
  10.                
  11.             int chose= menu.chose();
  12.            
  13.                 again=false;
  14.                 menu.menuCalcolator(chose);
  15.            
  16.        }
  17.             catch(CustomException e){
  18.              
  19.              System.err.println(e + "prova");            
  20.            }
  21.        
  22.        catch(Exception e){
  23.          
  24.          System.err.println("Hai inserito un carattere errato. Riprova");
  25.          
  26.        }
  27.    
  28.     }while(again);
  29.  
  30.  }
  31.    
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement