2019-05-30 11:04:44 +00:00
|
|
|
import static utils.Utils.*;
|
|
|
|
|
|
|
|
public class Exercice1 { // FIXME A CHANGER
|
|
|
|
|
|
|
|
public static final void main(String[] args) {
|
2019-05-30 14:33:36 +00:00
|
|
|
int a = 13;
|
2019-05-30 11:04:44 +00:00
|
|
|
|
2019-05-30 14:33:36 +00:00
|
|
|
if (a<10) {
|
|
|
|
afficherPlusieursFois(a, a);
|
2019-05-30 11:04:44 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
else{
|
2019-05-30 14:33:36 +00:00
|
|
|
|
|
|
|
afficherPlusieursFois(a, a-10);
|
2019-05-30 11:04:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-30 14:33:36 +00:00
|
|
|
|
|
|
|
|
|
|
|
public static void afficherPlusieursFois(int aAfficher, int nombreFois){
|
|
|
|
|
|
|
|
for(int compteur = 0; compteur<nombreFois; compteur++)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
afficher(aAfficher);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2019-05-30 11:04:44 +00:00
|
|
|
}
|