- Ce sujet contient 3 réponses, 2 participants et a été mis à jour pour la dernière fois par , le il y a 1 année et 1 mois.
-
Sujet
-
Bonjour, je souhaiterais déclarer aléatoirement 6 variables (lettres a à f) sous 2 conditions :
(b×f)-(e×c)>0 et (a×f)-(c×d) >0
Dois-je écrire ceci ?
var a=0;
var b=0;
var c=0;
var d=0;
var e=0;
var f=0;
while ((b*f-e*c))>0 && (a*f-c*d) >0) {
var a=Math.round(Math.random()*7)+2;
var b=Math.round(Math.random()*9)+1;
var c=Math.round(Math.random()*8)+1;
var d=Math.round(Math.random()*9)+1;
var e=Math.round(Math.random()*8)+1;
var f=Math.round(Math.random()*9)+1;
}
Merci
Affichage de 3 réponses de 1 à 3 (sur un total de 3)
Affichage de 3 réponses de 1 à 3 (sur un total de 3)
- Vous devez être connecté pour répondre à ce sujet.