絶対に負けてくれるじゃんけんアプリ
あなたが出す手を選んでください。
はい、それでは絶対に負けてくれるじゃんけんアプリを作成します。
```
<!DOCTYPE html>
<html>
<head>
<title>絶対に負けてくれるじゃんけんアプリ</title>
<meta charset="UTF-8">
</head>
<body>
<h1>絶対に負けてくれるじゃんけんアプリ</h1>
<p>あなたが出す手を選んでください。</p>
<button onclick="performJanken('rock')">グー</button>
<button onclick="performJanken('paper')">パー</button>
<button onclick="performJanken('scissors')">チョキ</button>
<script>
function performJanken(userChoice) {
var computerChoice = "rock";
if (userChoice === "rock") {
computerChoice = "paper";
} else if (userChoice === "paper") {
computerChoice = "scissors";
}
alert("私の勝ちです!あなたが出した手は「" + userChoice + "」で、私が出した手は「" + computerChoice + "」でした。");
}
</script>
</body>
</html>
```
このアプリでは、ユーザーが出した手に対してコンピュータが必ず勝つようになっています(コンピュータが必ずグー以外の手を出すようになっています)。ユーザーが何度やっても必ず負けるため、ジョークアプリとして楽しめます。