/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package ud2ejerc8;
import java.util.*;
/**
*
* @author juan
*/
public class Ud2Ejerc8 {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
Scanner entrada = new Scanner (System.in);
int n1,n2,n3;
//Lectura de los valores
System.out.println("Introduzca el primer número");
n1= entrada.nextInt();
System.out.println("Introduzca el segundo número");
n2= entrada.nextInt();
System.out.println("Introduzca el tercer número");
n3= entrada.nextInt();
//Cálculo de salida y retorno
if (n1==n2+n3) System.out.println("Se cumple que N1 = N2 + N3");
else if (n2==n1+n3) System.out.println("Se cumple que N2 = N1 + N3");
else if (n3==n1+n2) System.out.println("Se cumple que N3 = N1 + N2");
else System.out.println("Los números no cumplen la condición");
}
}
No hay comentarios:
Publicar un comentario