-
Notifications
You must be signed in to change notification settings - Fork 1
/
PartColt.java
144 lines (120 loc) · 3.18 KB
/
PartColt.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
package projeto_PI;
import java.util.Scanner;
public class PartColt {
static Scanner rec = new Scanner(System.in);
static double recur_nat=0, nResci=0, carbonCol = 0;
static int fml;
public static void partColt() {
double gs = 0;
int tpBand, tpGas, resp2, resp3, resp4, resp5;
int cont = 0, cont01 = 0, cont1 = 0, cont2 = 0, cont3 = 0, cont4 = 0;
System.out.println(
"Olá, bem vindo ao Clean Carbon. Vamos começar...\n"
+ "Digite quantas pessoas moram com você:");
fml = rec.nextInt();
System.out.println("Qual o KWh da sua última conta? ");
double kwfml = rec.nextDouble();
do {
if (cont01 > 0) {
System.out.println("Opção inválida");
}
System.out.println(
"Qual bandeira qua aparece na sua conta? \n" + "1. Verde \n"
+ "2. Amarela \n"
+ "3. Vermelha");
tpBand = rec.nextInt();
cont01++;
} while ((tpBand != 1) && (tpBand != 2) && (tpBand != 3));
if (tpBand == 1) {
carbonCol = +0.2 * kwfml;
kwfml+= kwfml * 0.2;
} else if (tpBand == 2) {
carbonCol = +0.7 * kwfml;
kwfml+= kwfml * 0.7;
} else {
carbonCol = +0.9 * kwfml;
kwfml= + kwfml * 0.9;
}
do {
if (cont > 0) {
System.out.println("Opção Inválida");
}
System.out.println(
"O gás na sua casa é canalizdo ou é botijão? \n"
+ "1 - gás canalizado \n"
+ "2 - gás botijão ");
tpGas = rec.nextInt(); // RESPOSTA 1
cont++;
} while ((tpGas != 1) && (tpGas != 2));
if (tpGas == 1) {
System.out.printf("Qual o consumo da última conta em metros cubicos? \n");
gs = rec.nextInt();
gs = gs * 105;
} else {
System.out.printf("Quantos botijões você compra por mês? \n");
gs = rec.nextInt();
gs = (gs * 5.2) * 105;
}
recur_nat= gs+kwfml;
do {
if (cont1 > 0) {
System.out.println("Opção Inválida");
}
System.out.println("Sua família recicla alumínio? \n"
+ "1. SIM \n"
+ "2. NÃO");
resp2 = rec.nextInt(); // RESPOSTA 2
cont1++;
} while ((resp2 != 1) && (resp2 != 2));
if (resp2 == 2) {
carbonCol +=166;
nResci += 166;
}
System.out.println("Dados recebidos");
do {
if (cont4 > 0) {
System.out.println("Opção Inválida");
}
System.out.println("Sua família recicla papel? \n"
+ "1. SIM \n"
+ "2. NÃO");
resp5 = rec.nextInt(); // RESPOSTA 5
cont4++;
} while ((resp5 != 1) && (resp5 != 2));
if (resp5 == 2) {
carbonCol +=184;
nResci+=184;
}
System.out.println("Dados recebidos");
do {
if (cont2 > 0) {
System.out.println("Opção Inválida");
}
System.out.println("Sua família viajou de avião no último ano? \n"
+ "1. SIM \n"
+ "2. NÃO");
resp3 = rec.nextInt(); // RESPOSTA 3
cont2++;
} while ((resp3 != 1) && (resp3 != 2));
if (resp3 == 1) {
do {
if (cont3 > 0) {
System.out.println("Opção Inválida");
}
System.out.println("Foi uma viagem de duração maior que 4 horas? \n"
+ "1. SIM \n"
+ "2. NÃO");
resp4 = rec.nextInt(); // RESPOSTA 4
cont3++;
} while ((resp4 != 1) && (resp4 != 2));
if (resp4 == 1) {
carbonCol +=4400;
} else {
carbonCol +=1100;
}
System.out.println("Dado recebido");
} else {
System.out.println("Dado recebido");
}
}
}