addjs 发布于七月 9, 2022 分享 发布于七月 9, 2022 · 只看该作者 我从其他地方看来的一道挺有意思的问题,具体如下: 假如你随机选择答案,你答对本题的概率是? A. 25% B.0% C.25% D.50% 链接到点评
syd 发布于七月 10, 2022 分享 发布于七月 10, 2022 · 只看该作者 选 E,钝角 const simulate_choice = (simulate_times = 100) => { let counter = [0, 0, 0, 0]; for (let i = 0; i < simulate_times; i++) { counter[Math.floor(Math.random() * 4)] += 1; } const choice = { A: counter[0], B: counter[1], C: counter[2], D: counter[3] }; const answer = { "0%": choice.B / simulate_times, "25%": (choice.A + choice.C) / simulate_times, "50%": choice.D / simulate_times, }; return answer; }; console.log(simulate_choice(10000)); 这题没有意思,包装了一下的悖论罢了 引用 下列的哪个命题是真命题? 第二条是错误的。 第一条说得对。 链接到点评
syd 发布于七月 10, 2022 分享 发布于七月 10, 2022 · 只看该作者 刚刚,syd说道: 选 E,钝角 const simulate_choice = (simulate_times = 100) => { let counter = [0, 0, 0, 0]; for (let i = 0; i < simulate_times; i++) { counter[Math.floor(Math.random() * 4)] += 1; } const choice = { A: counter[0], B: counter[1], C: counter[2], D: counter[3] }; const answer = { "0%": choice.B / simulate_times, "25%": (choice.A + choice.C) / simulate_times, "50%": choice.D / simulate_times, }; return answer; }; console.log(simulate_choice(10000)); 这题没有意思,包装了一下的悖论罢了 你们用浏览器 > F12 > 控制台(Console)也可以运行,答案是 链接到点评
推荐贴