/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package PrimerEjemplo; import java.util.InputMismatchException; import java.util.Scanner; public class SumaDosNumeros { public static void main(String[] args) { Scanner scanner=new Scanner(System.in); int num1,num2,suma; try { System.out.print("\n\tInserte el primer número: "); num1=scanner.nextInt(); System.out.print("\n\tInserte el segundo número: "); num2=scanner.nextInt(); suma=num1+num2; System.out.println("\n\t\tLa suma de ambos números son: "+suma); } catch (InputMismatchException e) { System.out.println("\n\t\tLo siento, ha insertado letras. Cerramos la ejecución del programa."); } } }