-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathVeiculo.java
97 lines (76 loc) · 2.34 KB
/
Veiculo.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
package projetofinal;
public class Veiculo {
// atributos
private int veiculoID;
private String placa;
private String cor;
private int nroPortas;
private char tipoCombustivel;
private long quilometragem;
private double valorDiaria;
// construtores
public Veiculo(String placa, String cor, int nportas, char combustivel, long kmrodados, double valordiaria) {
this.veiculoID = Utilitaria.IdVeiculo;
Utilitaria.IdVeiculo++;
this.placa = placa;
this.cor = cor;
this.nroPortas = nportas;
this.tipoCombustivel = combustivel;
this.quilometragem = kmrodados;
this.valorDiaria = valordiaria;
}
// get set
public String getPlaca() {
return this.placa;
}
public void setPlaca(String placa) {
this.placa = placa;
}
public String getCor() {
return this.cor;
}
public void setCor(String cor) {
this.cor = cor;
}
public int getNroPortas() {
return this.nroPortas;
}
public void setNroPortas(int nroPortas) {
this.nroPortas = nroPortas;
}
public char getTipoCombustivel() {
return this.tipoCombustivel;
}
public void setTipoCombustivel(char tipoCombustivel) {
this.tipoCombustivel = tipoCombustivel;
}
public long getQuilometragem() {
return this.quilometragem;
}
public void setQuilometragem(long quilometragem) {
this.quilometragem = quilometragem;
}
public double getValorDiaria() {
return this.valorDiaria;
}
public void setValorDiaria(double valordiaria) {
this.valorDiaria = valordiaria;
}
// metodos
public double calculaCustos(int dias, long km) {
double custo;
int diferenca;
diferenca = (int) (km - (dias * 100));
custo = valorDiaria * dias;
if (diferenca > 0) {
for (int i = 0; i < diferenca; i++) {
custo += Utilitaria.custoKmExtra;
}
}
return custo;
}
public String toString() {
return this.veiculoID + "|" + this.placa + "|" + this.cor + "|" + this.nroPortas + "|" + this.tipoCombustivel
+ "|" + this.quilometragem + "|" + this.valorDiaria;
}
}