-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAluno (3).java
134 lines (104 loc) · 2.18 KB
/
Aluno (3).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
package Projeto1;
public class Aluno {
private String nome;
private Double n1 = -1.0;
private Double n2 = -1.0;
private Double n3 = -1.0;
private Double media = -1.0;
public static String nomeDaDisciplina = "Programação Orientada a Objetos";
private String situacao = "";
public Aluno() {
}
public Aluno(String nome, double n1, double n2, double n3) {
this.nome = nome;
this.n1 = n1;
this.n2 = n2;
this.n3 = n3;
}
public Aluno(String nome, double n1, double n2) {
this.nome = nome;
this.n1 = n1;
this.n2 = n2;
}
public Aluno(String nome, double n1) {
this.nome = nome;
this.n1 = n1;
}
public Aluno(String nome) {
this.nome = nome;
}
public String getNome() {
return nome;
}
public void setNome(String nome) {
this.nome = nome;
}
public Double getN1() {
return this.n1;
}
public void setN1(Double n1) {
this.n1 = n1;
}
public Double getN2() {
return n2;
}
public void setN2(Double n2) {
this.n2 = n2;
}
public Double getN3() {
return this.n3;
}
public void setN3(Double n3) {
this.n3 = n3;
}
public Double getMedia() {
return this.media;
}
public void setMedia(Double media) {
this.media = media;
}
public String getSituacao() {
return situacao;
}
public void setSituacao(String situacao) {
this.situacao = situacao;
}
private Double procurarMenorNota() {
if (this.getN1() < this.getN2() && this.getN1() < this.getN3()) {
return this.getN1();
}
if (this.getN2() < this.getN1() && this.getN2() < this.getN3()) {
return this.n2;
}
if (this.getN3() < this.getN2() && this.getN3() < this.getN1()) {
return this.n3;
}
return 0.0;
}
public Double calcularMedia() {
double menor = procurarMenorNota();
if (menor == n1) {
setMedia((n2 + n3) / 2);
}
if (menor == n2) {
setMedia((n1 + n3) / 2);
}
if (menor == n3) {
setMedia((n1 + n2) / 2);
}
return this.media;
}
public String verificarSituacao() {
this.calcularMedia();
if (media >= 6) {
setSituacao("Aprovado");
}
else if (media >= 4 && n3 == -1) {
setSituacao("Em recuperação");
}
else if ((media < 4) || (media < 6 && n3 != -1)) {
setSituacao("Reprovado");
}
return getSituacao();
}
}