米米的博客

做了一点微小的工作

Power of Logic 是一个推理游戏,玩家的任务是用尽可能少的时间和步骤解开密码序列。当你输入不同的数字序列时,系统会给出提示,指示你输入的数字序列中,有多少个数字正确但位置错误,又有多少个数字和位置都正确。可惜这一游戏已经不再维护和更新了,最新的 iOS 设备上甚至无法下载。不过考虑到它的核心逻辑并不复杂,笔者用 C 语言写了一个低配版。由于能力有限,只借鉴了核心逻辑,没有做图形界面。

运行效果如图:

Power of Logic

下面附上最终版本的代码。

阅读全文 »

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server

More info: Server

Generate static files

1
$ hexo generate

More info: Generating

Deploy to remote sites

1
$ hexo deploy

More info: Deployment

0%