diff --git a/src/config/Question.java b/src/config/Question.java index 3801378..533c370 100644 --- a/src/config/Question.java +++ b/src/config/Question.java @@ -75,6 +75,23 @@ public class Question { } } -// TODO : methode pour verifier si la question a au moins une bonne reponse ET une mauvaise reponse - + public boolean verifQuestion() { + int nbrepf=0; + int nbrepj=0; + for(Reponse p : reponses) { + + if(p.isJuste()==true) { + nbrepj=nbrepj+1; + } + else { + nbrepf=nbrepf+1; + } + + } + if(nbrepf==0||nbrepj==0) { + return false; + } + else + return true; + } }