-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProgLivro.java
54 lines (31 loc) · 1.51 KB
/
ProgLivro.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package proglivro;
import javax.swing.JOptionPane;
/**
*
* @author marcos
*/
public class ProgLivro {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
double n1,n2,n3,maior;
n1 = Double.parseDouble(JOptionPane.showInputDialog("Digite o primeiro numero: "));
n2 = Double.parseDouble(JOptionPane.showInputDialog("Digite o segundo numero: "));
ExemploSobrecarga e1 = new ExemploSobrecarga();
maior = e1.calculaNumeroMaior(n1, n2);
JOptionPane.showMessageDialog(null, "Maior numero digitado: " + maior);
n1 = Double.parseDouble(JOptionPane.showInputDialog("Digite o Primeiro numero: "));
n2 = Double.parseDouble(JOptionPane.showInputDialog("Digite o Segundo Numero: "));
n3 = Double.parseDouble(JOptionPane.showInputDialog("Digite o terceiro valor: "));
ExemploSobrecarga e2 = new ExemploSobrecarga();
maior = e2.calculaNumeroMaior(n1, n2, n3);
JOptionPane.showMessageDialog(null, "Maior numero digitado " + maior);
}
}