<h1>コンピューターとサイコロで対戦</h1>
<p id="result"></p>
<button onclick="saikoro()">サイコロで対戦</button>
<script>
function saikoro() {
// プレイヤーのサイコロの目をランダムに生成
let playersaikoro = Math.floor(Math.random() * 6) + 1;
// コンピューターのサイコロの目をランダムに生成
let computersaikoro = Math.floor(Math.random() * 6) + 1;
// 結果を表示する
let resultElement = document.getElementById('result');
resultElement.innerHTML = `あなたの出目: ${playersaikoro}<br>コンピューターの出目: ${computersaikoro}<br>`;
if (playersaikoro > computersaikoro) {
resultElement.innerHTML += 'あなたの勝ち!';
} else if (playersaikoro < computersaikoro) {
resultElement.innerHTML += 'コンピューターの勝ち!';
} else {
resultElement.innerHTML += '引き分け!';
}
}
</script>
コメント