算术小游戏,紧张刺激,欢迎来玩

mqx 2026-07-23 04:18 1

简介:不断出现算术题目,答对增加时间,总时间不断减少增加压力,有连击奖励,boss 题目等,还可以分享成绩,欢迎来玩


游玩地址: https://77796e3a.pinme.dev/

最新回复 (18)
  • stcheng 07-23 07:55
    1
    60 题都到不了😂
  • mqx 楼主 07-23 08:28
    2
    @stcheng #1 是有点挑战的鸭,哈哈哈,欢迎分享给朋友或孩子玩,锻炼一下大脑
  • Liuman 07-23 09:33
    3
    我是废物,首次尝试 只到了 34 关,楼上居然 60
  • zhihyixuu 07-23 09:36
    4
    足球对战怎么打不开了
  • mqx 楼主 07-23 09:43
    5
    @zhihyixuu #4 我下线啦,服务器撑不住啦,你可以自己用 docker 部署一个,项目地址在: https://github.com/ns2250225/animal-world-cup
  • grantonzhuang 07-23 12:11
    6
    新纪录!我在「算术冲刺」拿到 14884 分,答对 40 题,最长连击 41 。你能超过我吗?
    https://77796e3a.pinme.dev/?mode=classic&seed=MRMRWZQDSHTMR4&target=14884&correct=40&v=1
  • x2ex 07-23 12:41
    7
    手机上没法操作😂
  • vincentWdp 07-23 13:05
    8
    时间流速达到 3.5 倍,我仍答对了 429 道题。你敢来挑战吗?
    https://77796e3a.pinme.dev/?mode=classic&seed=MRMRWWRWKC24L7&target=749794&correct=429&v=1
    抱歉😂
  • vincentWdp 07-23 13:15
    9
    以下代码是#8 楼的解释. 贴到 console 就好. (再次抱歉☹️):
    ```
    (() => {
    window.mathRushBot?.stop?.();

    let count = 0;

    function calculate(text) {
    const normalized = text
    .trim()
    .replace(/−/g, "-")
    .replace(/\s+/g, "");

    const match = normalized.match(
    /^(-?\d+)([+\-×÷*/])(-?\d+)$/
    );

    if (!match) return null;

    const a = Number(match[1]);
    const op = match[2];
    const b = Number(match[3]);

    switch (op) {
    case "+": return a + b;
    case "-": return a - b;
    case "×":
    case "*": return a * b;
    case "÷":
    case "/": return a / b;
    default: return null;
    }
    }

    function answerQuestion() {
    const question = document.querySelector("#question");
    const input = document.querySelector("#answer");
    const feedback = document.querySelector("#feedback");

    if (!question || !input || !feedback) return;

    if (
    input.value !== "" ||
    feedback.textContent.trim() !== "按 Enter 提交"
    ) return;

    const answer = calculate(question.textContent);
    if (answer === null || !Number.isInteger(answer)) return;

    input.value = String(answer);
    input.dispatchEvent(
    new Event("input", { bubbles: true })
    );

    input.dispatchEvent(
    new KeyboardEvent("keydown", {
    key: "Enter",
    code: "Enter",
    bubbles: true,
    cancelable: true
    })
    );

    count++;
    }

    const timer = setInterval(answerQuestion, 10);

    window.mathRushBot = {
    get count() {
    return count;
    },
    stop() {
    clearInterval(timer);
    delete window.mathRushBot;
    console.log(`自动答题已停止,共提交 ${count} 题`);
    }
    };

    console.log(
    "✅ 自动答题已启动;输入 mathRushBot.stop() 可停止"
    );
    })();
    ```
  • mqx 楼主 07-23 13:18
    10
    @vincentWdp #9 外挂啊这是,哈哈哈
  • mqx 楼主 07-23 13:19
    11
    @x2ex #7 手机上有键盘,键盘有回车键的鸭
  • maocat 07-23 13:19
    12
    @vincentWdp #9 科技组
  • CherryGods 07-23 13:33
    13
    @vincentWdp nb
  • CherryGods 07-23 13:34
    14
    长大之后对数字一点都不敏感了,只答对了 33 道
  • lhcnic 07-23 13:45
    15
    @mqx 手机键盘只有 0-9 ,没有回车
  • mqx 楼主 07-23 13:55
    16
    @lhcnic #15 发送键就是回车鸭
  • duck2 07-23 14:25
    17
    确实才 30 道题,做了一个三位数,87 布局的键盘数字按不过来了
  • MozzieW 07-23 16:53
    18
    @duck2 感觉 87 键盘太影响了,数字要找


    @mqx #16 需要支持一下空格键,空格键更方便提速
* 帖子来源V2EX
返回