49443da5
Vincent Benoist
tp avance
|
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
|
import java.util.*;
public class ProgressionArithmetique {
ArrayList<Double> termes;
double raison;
int rang;
public ProgressionArithmetique(double terme1, double raison) {
termes = new ArrayList<Double>();
termes.add(terme1);
this.setRang(0);
this.setRaison(raison);
}
public int getRang() {
return this.rang;
}
public void setRang(int rang) {
this.rang = rang;
}
public double getRaison() {
return this.raison;
}
public void setRaison(double raison) {
this.raison = raison;
}
void next() {
double d = this.termes.get(getRang());
d += raison;
termes.add(d);
rang++;
}
/**
* Calcul les n prochaines itérations
*/
void next(int n) {
for (int i = 0; i < n; i++) {
next();
}
}
/**
* Récupère le dernier terme
*/
public double getTerme() {
return termes.get(getRang());
}
public String toString() {
String res = "progression:";
for (Double d : termes) {
res += " " + d;
}
return res;
}
}
|