-
Notifications
You must be signed in to change notification settings - Fork 2
/
exercício --- case....
45 lines (38 loc) · 1.09 KB
/
exercício --- case....
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
(SE O USUÁRIO DIGITAR 03
SOMAR A E B MAIS 20%
SE O USUÁRIO DIGITAR 04
SOMAR B - A MAIS 20%
SE O USUÁRIO DIGITAR 05
SOMAR A + A MENOS 5%
)
// COMPLETE AS LINHAS QUE FALTAM:
public class case3 {
public static void main(String[] args) {
Scanner entrada = new Scanner(System.in);
?
?
?
?
System.out.println(" informe o código, 3 , 4 ou 5");
int codigo = entrada.nextInt();
switch (codigo){
case 3:
System.out.println(a=a+b);
System.out.println(a=a+(a*20)/100);
System.out.println(" valor de a+ b + 20% "+a);
break;
case 4:
b= b-a;
b=b+(b*20)/100;
System.out.println(" b-a mais 20% "+ b);
break;
case 5:
a= a+a;
a= a-(a*5)/100;
System.out.println(" valor de a + a - 5% "+a);
break;
default:
System.out.println("Código inexistente");
}
}
}