bruno.chassagnol
3 years ago
1 changed files with 21 additions and 0 deletions
@ -0,0 +1,21 @@ |
|||
<!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 jeton_bac=1000; |
|||
var jeton_joueur=99; |
|||
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> |
|||
|
|||
</body> |
|||
</html> |
Loading…
Reference in new issue