IDNLearner.com, onde especialistas respondem às suas dúvidas. Obtenha respostas rápidas e precisas para suas perguntas graças aos nossos especialistas, sempre dispostos a oferecer a melhor ajuda possível.
import java.util.Scanner;
class HelloWorld {
public static void main(String[] args) {
System.out.print("Input:A:> ");
Scanner aValue = new Scanner (System.in);
int a = aValue.nextInt();
System.out.print("Input:B:> ");
Scanner bValue = new Scanner (System.in);
int b = bValue.nextInt();
int c;
if (a==b){
c = a+b;
}
else {
c = a*b;
}
System.out.println(c);
}
}