-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathArgue.java
35 lines (25 loc) · 818 Bytes
/
Argue.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
package packCodeWars;
public class Argue {
public static int nbYear(int p0, double percent, int aug, int p) {
//p0: población inicial
//percent: porcentaje de crecimiento 2% = 2
//aug: migración de habitantes
//p: población objetivo
// hay que devolver el numero de años para llegar al objetivo
// your code
int poblacion = p0;
int years = 0;
while(poblacion<p){
poblacion += (poblacion*percent/100);
poblacion += aug;
years++;
}
return years;
}
public static void main(String[] args) {
// TODO Auto-generated method stub
Argue a = new Argue();
System.out.println(a.nbYear(1500, 5, 100, 5000));
System.out.println(a.nbYear(1500000, 2.5, 10000, 2000000));
}
}