列出 4 个运算符和 4 个数字的所有组合,然后测试它们的最终值 C#
我正在尝试制作一个 24 解算器(游戏 24 的目标是使用 +、-、*、/ 来得到数字 24)
我相当有信心做到这一点的唯一方法是使用蛮力方法(尝试每个数字的组合以及它们之间的运算符
,我认为数字的放置也应该是随机的,
我应该如何做呢
? (基本纲要、计划……)
I'm trying to make a 24 solver (the game 24's objective is to use +,-,*,/ to get to the number 24)
I'm reasonably confident that the only way to do this is using a brute force method (try each combination of the numbers with the operators in between them.
To eliminate the need for parenthesis, I think the number placement should also be randomized.
I want to do this in C#.
How should I go about doing this?
(basic outline, plan...)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
摘自:google codeplex
Taken from: google codeplex