Respostas
respondido por:
1
Resposta:
package Soma;
import javax.swing.JOptionPane;
public class Soma {
public static void main(String args[]) {
int soma;
int num1 = 0; int num2 = 0;
num1 = Integer.parseInt(JOptionPane.showInputDialog(null,"Digite um numero:"));
num2 = Integer.parseInt(JOptionPane.showInputDialog(null,"Digite outro numero:"));
soma = num1 + num2; JOptionPane.showMessageDialog(null,"A soma dos numeros e: " + soma);
System.exit(0);
}
}
Explicação:
Faz um teste ai
Perguntas similares
4 anos atrás
4 anos atrás
4 anos atrás
6 anos atrás
6 anos atrás
6 anos atrás
8 anos atrás
8 anos atrás
8 anos atrás