faça um algoritmo que leia os valores de a b C e imprima na tela se a soma de a+b é menor que c em Java
Respostas
import java.util.Scanner;
class HelloWorld {
public static void main(String[] args) {
System.out.print("A: ");
Scanner aVal = new Scanner (System.in);
int a = aVal.nextInt();
System.out.print("B: ");
Scanner bVal = new Scanner (System.in);
int b = bVal.nextInt();
System.out.print("C: ");
Scanner cVal = new Scanner (System.in);
int c = cVal.nextInt();
int soma = a+b;
if (soma>c){
System.out.println("Soma: "+soma);
System.out.println("A+B > C");
}
else if (soma<c){
System.out.println("Soma: "+soma);
System.out.println("A+B < C");
}
else {
System.out.println("Soma: "+soma);
System.out.println("A+B = C");
}
}
}