Files
TD3_DEV51_Maxime_Marvin/word_search.java
2025-10-08 10:08:38 +02:00

20 lines
578 B
Java

import java.util.*;
public class word_search {
//Liste des mots
private static String[] WORDS = {
"Singe", "Google", "Frapper", "Haine", "Dio", "Java",
"Felix Vimalaratnam", "Lebreton", "Argent", "Pauvre", "Grocaillou"
};
public static void main(String[] args) {
//Permet de random
Random random = new Random();
//Prends le mot aléatoirement
String randomword = WORDS[random.nextInt(WORDS.length)];
// Affiche l'mot
System.out.println("Mot qu'on prend d'facon random : " + randomword);
}
}