• Matéria: Informática
  • Autor: mariazinhaa1000
  • Perguntado 3 anos atrás

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

respondido por: joaopedrolemos
3

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");

           }

   }

}


mariazinhaa1000: muito obrigadaa
joaopedrolemos: De nada
Perguntas similares