-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path6.1_Rock_paper.html
83 lines (71 loc) · 2.08 KB
/
6.1_Rock_paper.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<!DOCTYPE html>
<html>
<head>
<title>Rock, Paper, and Scissors</title>
</head>
<body>
<p>Rock Paper Scissors</p>
<button onclick="
const rand_no = Math.random();
let ComputerMove = '';
if (rand_no >= 0 && rand_no < 1 / 3) {
ComputerMove = 'rock';
} else if (rand_no >= 1 / 3 && rand_no < 2 / 3) {
ComputerMove = 'paper';
} else if (rand_no >= 2 / 3 && rand_no < 1) {
ComputerMove = 'scissors';
}
let result = '';
if (ComputerMove === 'rock') {
result = 'That\'s a Tie';
} else if (ComputerMove === 'paper') {
result = 'You Lose';
} else if (ComputerMove === 'scissors') {
result = 'You Win';
}
alert(`You Picked Rock. Computer Picked ${ComputerMove}. ${result}`);
">Rock</button>
<button onclick="
rand_no = Math.random();
ComputerMove = '';
if (rand_no >= 0 && rand_no < 1 / 3) {
ComputerMove = 'rock';
} else if (rand_no >= 1 / 3 && rand_no < 2 / 3) {
ComputerMove = 'paper';
} else if (rand_no >= 2 / 3 && rand_no < 1) {
ComputerMove = 'scissors';
}
result = '';
if (ComputerMove === 'rock') {
result = 'You Win';
} else if (ComputerMove === 'paper') {
result = 'That\'s a Tie';
} else if (ComputerMove === 'scissors') {
result = 'You Lose';
}
alert(`You Picked Paper. Computer Picked ${ComputerMove}. ${result}`);
">Paper</button>
<button onclick="
rand_no = Math.random();
ComputerMove = '';
if (rand_no >= 0 && rand_no < 1 / 3) {
ComputerMove = 'rock';
} else if (rand_no >= 1 / 3 && rand_no < 2 / 3) {
ComputerMove = 'paper';
} else if (rand_no >= 2 / 3 && rand_no < 1) {
ComputerMove = 'scissors';
}
result = '';
if (ComputerMove === 'rock') {
result = 'You Lose';
} else if (ComputerMove === 'paper') {
result = 'You Win';
} else if (ComputerMove === 'scissors') {
result = 'That\'s a Tie';
}
alert(`You Picked Scissors. Computer Picked ${ComputerMove}. ${result}`);
">Scissors</button>
<script>
</script>
</body>
</html>