avancement de Show, liaison entre Quizz et Question

This commit is contained in:
trochas
2025-09-25 15:45:24 +02:00
parent d65baa3a78
commit 8e8609aa4b
9 changed files with 124 additions and 14 deletions

View File

@@ -22,4 +22,13 @@ public class Choix extends Reponse{
this.choix = choix;
}
@Override
public String valHTML(){
String res = "";
for (String val : this.choix) {
res+=val+"<br/>";
}
return res;
}
}