-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExercicio3.java
41 lines (34 loc) · 1.21 KB
/
Exercicio3.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
package exercicio3;
import java.util.Scanner;
public class Exercicio3 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.println("Saudações humano! Vamos brincar com os números");
System.out.println("Informe o primeiro número: ");
int n1 = sc.nextInt();
System.out.println("Informe o segundo número: ");
int n2 = sc.nextInt();
System.out.println("Informe o terceiro número: ");
int n3 = sc.nextInt();
if ((n2>n1) && (n1>n3)){
int total = n1 + n2;
System.out.println("O total é " + total);
}
if ((n2>n3) && (n3>n1)){
int total = n2 + n3;
System.out.println("O total é " + total);
}
if ((n3>n2) && (n2>n1)){
int total = n2 + n3;
System.out.println("O total é " + total);
}
if ((n3>n1) && (n1>n2)){
int total = n1 + n3;
System.out.println("O total é " + total);
}
if ((n1>n3) && (n3>n2)){
int total = n1 + n3;
System.out.println("O total é " + total);
}
}
}