You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
716 B
33 lines
716 B
<!DOCTYPE html>
|
|
<html>
|
|
<body>
|
|
<input type="text" id="name" required
|
|
minlength="4" maxlength="8" size="10">
|
|
<button onclick="lancement()">lance le jeu</button>
|
|
<script>
|
|
var jeton_bac=1000;
|
|
var jeton_joueur=99;
|
|
function lancement() {
|
|
var nb_jet = document.getElementById("name").value;
|
|
if (jeton_joueur > nb_jet && jeton_bac > 500 && nb_jet < 100 && nb_jet> 0){document.write(11);}
|
|
else{document.write("tu as mis trop de jetons");}
|
|
|
|
}
|
|
</script>
|
|
<script>
|
|
function nbAlea(){
|
|
const cars = [Math.floor(Math.random() * 10) ,
|
|
Math.floor(Math.random() * 10) ,
|
|
Math.floor(Math.random() * 10) ];
|
|
document.write(cars);
|
|
}
|
|
nbAlea();
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|