Skip to content

猜数字

约 62 字小于 1 分钟

js案例

2024-07-18

let num  = Math.floor(Math.random() * (20 - 1 + 1)) + 1;
while(true) {
        let res = +prompt('请输入一个数字');
        if(res < num) {
        alert('猜小了');
        }else if(res > num) {
        alert('猜大了');
        }else {
        alert('恭喜猜对了');
        break;
        }
};

更新日志

2025/2/16 23:37
查看所有更新日志
  • 0e103-fix:全文搜索样式
  • 1946f-添加布尔运算
  • 51ebd-docs: 初始版本