Files
DEV/DEV3.1/TP04/02_Quiz/src/Question.java
Simoes Lukas 33691f11fb ajout ex2 tp4
2025-09-27 17:38:27 +02:00

28 lines
532 B
Java

package fr.iutfbleau.Quiz;
import java.awt.*;
public class Question {
private String intitule;
private String[] options;
private int indexBonneReponse;
public Question(String intitule, String[] options, int indexBonneReponse) {
this.intitule = intitule;
this.options = options;
this.indexBonneReponse = indexBonneReponse;
}
public String getIntitule() {
return this.intitule;
}
public String[] getOptions() {
return this.options;
}
public int getIndexBonneReponse() {
return this.indexBonneReponse;
}
}