Éléments de correction de TP – NFA031
Éléments de correction de TP – NFA031 Raphaël Fournier-S’niehotta, [email protected] Novembre 2014 1 TP7 1.1 Exercice 1 1.1.1 Question 1 1 class TP7q1{ 2 3 public static void nEtoiles(int n){ 4 for (int i = 0; i < n; i++) { 5 Terminal.ecrireChar(’*’); 6}