21 lines
583 B
Java
21 lines
583 B
Java
package com.humanbooster.exercices;
|
|
|
|
public class JeuDevinette {
|
|
|
|
private int nombreADeviner;
|
|
private int nombreDeTentatives;
|
|
private int[] tentatives;
|
|
private final int MAX_TENTATIVES = 10;
|
|
|
|
private int getRandomBetween(int min, int max) {
|
|
return (int)(Math.random() * (max - min + 1)) + min;
|
|
}
|
|
|
|
private void afficherHistorique() {
|
|
System.out.println("\nHistorique des tentatives :");
|
|
for (int i = 0; i < nombreDeTentatives; i++) {
|
|
System.out.println("Tentative " + (i + 1) + " : " + tentatives[i]);
|
|
}
|
|
}
|
|
}
|