开启辅助访问     
收藏本站

站内搜索

搜索

Minecraft(我的世界)苦力怕论坛

[其他] 【非MC】让chatgpt做了个猜拳游戏

 发表于 2023-3-18 21:07:54|显示全部楼层|阅读模式 IP:江苏省
就闲着没事琢磨ChatGPT,整了这么个东西出来。。。
CEF452D1-5EB7-4476-AD05-9815CC1CC979.png
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <title>石头剪刀布游戏</title>
  6.     <style>
  7.         body {
  8.             font-family: Arial, sans-serif;
  9.             text-align: center;
  10.         }
  11.         h1 {
  12.             margin-top: 50px;
  13.         }
  14.         button {
  15.             padding: 10px;
  16.             margin: 20px;
  17.             font-size: 20px;
  18.             cursor: pointer;
  19.         }
  20.         #result {
  21.             font-size: 24px;
  22.             font-weight: bold;
  23.             margin-top: 50px;
  24.         }
  25.     </style>
  26. </head>
  27. <body>
  28.     <h1>石头剪刀布游戏</h1>
  29.     <button id="rock">石头</button>
  30.     <button id="scissors">剪刀</button>
  31.     <button id="paper">布</button>
  32.     <div id="result"></div>
  33.     <script>
  34.         // 定义变量
  35.         var choices = ["石头", "剪刀", "布"];
  36.         var computerChoice;
  37.         var playerChoice;

  38.         // 点击按钮时触发事件
  39.         document.getElementById("rock").onclick = function() { play("石头"); };
  40.         document.getElementById("scissors").onclick = function() { play("剪刀"); };
  41.         document.getElementById("paper").onclick = function() { play("布"); };

  42.         // 游戏逻辑
  43.         function play(playerChoice) {
  44.             computerChoice = choices[Math.floor(Math.random() * choices.length)];
  45.             var result = "";
  46.             if (playerChoice === computerChoice) {
  47.                 result = "平局!";
  48.             } else if ((playerChoice === "石头" && computerChoice === "剪刀") ||
  49.                        (playerChoice === "剪刀" && computerChoice === "布") ||
  50.                        (playerChoice === "布" && computerChoice === "石头")) {
  51.                 result = "你赢了!";
  52.             } else {
  53.                 result = "电脑赢了!";
  54.             }
  55.             document.getElementById("result").innerHTML = "你出了:" + playerChoice + ",电脑出了:" + computerChoice + "," + result;
  56.         }
  57.     </script>
  58. </body>
  59. </html>
复制代码
它甚至添加了注释
苦力怕论坛,感谢有您~
 发表于 2023-3-18 21:25:35 来自手机|显示全部楼层 IP:江苏省
chatgpt写代码?
2#2023-3-18 21:25:35回复收起回复
苦力怕论坛,感谢有您~
 发表于 2023-3-18 21:26:10 来自手机|显示全部楼层 IP:广东省
我让他帮我写了个个人网站,贼丑
3#2023-3-18 21:26:10回复收起回复
苦力怕论坛,感谢有您~
 楼主|  发表于 2023-3-19 11:25:07|显示全部楼层 IP:江苏省

当然可以啊
4#2023-3-19 11:25:07回复收起回复
苦力怕论坛,感谢有您~

本版积分规则

本站
关于我们
联系我们
坛史纲要
官方
哔哩哔哩
技术博客
下载
网易版
安卓版
JAVA
反馈
意见建议
教程中心
更多
捐助本站
QQ群
QQ群

QQ群

访问手机版

访问手机版

手机版|小黑屋|系统状态|klpbbs.com

粤公网安备 44200002445329号 | 由 木韩网络 提供支持 | GMT+8, 2024-12-12 06:27

声明:本站与Mojang以及微软公司没有从属关系

Powered by Discuz! X3.4 粤ICP备2023071842号-3