-
Notifications
You must be signed in to change notification settings - Fork 0
/
SassoCartaForbice.html
37 lines (33 loc) · 1.17 KB
/
SassoCartaForbice.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>Sasso, Carta, Forbice</title>
</head>
<body>
<h1>Sasso, Carta, Forbice</h1>
<p>Scegli una delle opzioni:</p>
<button onclick="gioca('sasso')">Sasso</button>
<button onclick="gioca('carta')">Carta</button>
<button onclick="gioca('forbice')">Forbice</button>
<p id="result"></p>
<script>
function gioca(playerChoice) {
var choices = ["sasso", "carta", "forbice"];
var computerChoice = choices[Math.floor(Math.random() * choices.length)];
var result = "";
if (playerChoice === computerChoice) {
result = "Pareggio!";
} else if (
(playerChoice === "sasso" && computerChoice === "forbice") ||
(playerChoice === "carta" && computerChoice === "sasso") ||
(playerChoice === "forbice" && computerChoice === "carta")
) {
result = "Hai vinto!";
} else {
result = "Hai perso!";
}
alert("Hai scelto " + playerChoice + ", il computer ha scelto " + computerChoice + ". " + result);
}
</script>
</body>
</html>