-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCreditoScolastico.java
151 lines (129 loc) · 5.21 KB
/
CreditoScolastico.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
145
146
147
148
149
150
151
/**
* @author Oliveri
* @date 07/12/2021
* @description Programma per calcolare i crediti scolastici di un alunno frequentante la classe terza,quarta,quinta
*/
package com.company;
public class CreditoScolastico {
private double mediavotianno;
private int numInsuff;
private int crediti;
private int creditoScolastico;
/**
* Metodo costruttore che riceve cognome,media,insufficienze,crediti e le salva nei relativi attributi
* e che inizializza creditoScolastico e classe
* @param media media dei voti
* @param insufficiente numero delle materie insufficienti
* @param crediti crediti aggiuntivi
*/
public CreditoScolastico(double media, int insufficiente, int crediti) {
this.mediavotianno = media;
this.crediti = crediti;
this.creditoScolastico = 0;
this.numInsuff = insufficiente;
}
/**
* Metodo che calcola i crediti scolastici di un alunno di terza
*/
public void calcoloCreditiTerza() {
if (this.mediavotianno < 6) {
creditoScolastico = 0;
}
else if (this.mediavotianno == 6) {
if (this.numInsuff == 0 && this.crediti >= 1) {
this.creditoScolastico = 8;
} else if (this.numInsuff >= 1 || crediti == 0) {
this.creditoScolastico = 7;
}
}
else if (this.mediavotianno > 6 && this.mediavotianno <= 7) {
if (this.numInsuff == 0 && this.crediti >= 1) {
this.creditoScolastico = 9;
} else if (this.numInsuff >= 1 || crediti == 0) {
this.creditoScolastico = 8;
}
}
else if (this.mediavotianno > 7 && this.mediavotianno <= 8) {
if (this.numInsuff == 0 && this.crediti >= 1) {
this.creditoScolastico = 10;
} else if (this.numInsuff >= 1 || crediti == 0) {
this.creditoScolastico = 9;
}
}
else if (this.mediavotianno > 8 && this.mediavotianno <= 9) {
if (this.numInsuff == 0 && this.crediti >= 1) {
this.creditoScolastico = 11;
} else if (this.numInsuff >= 1 || crediti == 0) {
this.creditoScolastico = 10;
}
}
else if (this.mediavotianno > 9 && this.mediavotianno <= 10) {//9<M≤10
if (this.numInsuff == 0 && this.crediti >= 1) {
this.creditoScolastico = 12;
} else if (this.numInsuff >= 1 || crediti == 0) {
this.creditoScolastico = 11;
}
}
}
/**
* Metodo che calcola i crediti di un alunno di quarta
*/
public void calcoloCreditiQuarta() {
calcoloCreditiTerza();
creditoScolastico = creditoScolastico+1;
}
/**
* Metodo che calcola i crediti di un alunno di quinta
*/
public void calcoloCreditiQuinta(){
if (this.mediavotianno < 6) {
if (this.numInsuff == 0 && this.crediti >= 1) {
// non ha nessun voto insufficiente avrò un credito maggiore
this.creditoScolastico = 8;
} else if (this.numInsuff >= 1 || crediti == 0) {
// se ha voto insufficiente avrà un credito minore
this.creditoScolastico = 7;
} }
else if (this.mediavotianno == 6) {
//la media e uguale 6 calcola se avrà i crediti tra 7-8
if (this.numInsuff == 0 && this.crediti >= 1) {
// non ha nessun voto insufficiente avrò un credito maggiore
this.creditoScolastico = 10;
} else if (this.numInsuff >= 1 || crediti == 0) {
// se ha voto insufficiente avrà un credito minore
this.creditoScolastico = 9;
}
}
else if (this.mediavotianno > 6 && this.mediavotianno <= 7) {
if (this.numInsuff == 0 && this.crediti >= 1) {
this.creditoScolastico = 11;
} else if (this.numInsuff >= 1 || crediti == 0) {
this.creditoScolastico = 10;
}
}
else if (this.mediavotianno > 7 && this.mediavotianno <= 8) {
if (this.numInsuff == 0 && this.crediti >= 1) {
this.creditoScolastico = 12;
} else if (this.numInsuff >= 1 || crediti == 0) {
this.creditoScolastico = 11;
}
}
else if (this.mediavotianno > 8 && this.mediavotianno <= 9) {
if (this.numInsuff == 0 && this.crediti >= 1) {
this.creditoScolastico = 14;
} else if (this.numInsuff >= 1 || crediti == 0) {
this.creditoScolastico = 13;
}
}
else if (this.mediavotianno > 9 && this.mediavotianno <= 10) {//9<M≤10
if (this.numInsuff == 0 && this.crediti >= 1) {
this.creditoScolastico = 15;
} else if (this.numInsuff >= 1 || crediti == 0) {
this.creditoScolastico = 14;
}
}
}
public int getCreditoScolastico() {
return creditoScolastico;
}
}