
C#
OneWord233
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
基于UGUI和xLua的一个简单的UI框架
基于UGUI和xLua的一个简单的UI框架原创 2022-06-20 14:35:35 · 995 阅读 · 0 评论 -
数独解题器强化版
经过实际测试,在解决高难度数独时,解题器的效果仍旧不理想,所以添加了数字提示功能。 另外添加了自定义数独数据功能。 MainWindow.xaml <Window x:Class="SudokuSolver.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...原创 2019-10-14 15:22:40 · 3349 阅读 · 1 评论 -
WPF桌面应用实例(四):写一个数独解题器
数独是以前经常玩的游戏,很锻炼逻辑能力,今天写了一个数独解题器,基本可以在一分钟内解决问题,很方便。 以下是代码: MainWindow.xaml <Window x:Class="SudokuSolver.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...原创 2019-10-12 18:01:34 · 609 阅读 · 2 评论 -
猜数字游戏
上班无聊,写了个猜数字游戏,童年的回忆啊。 using System; using System.Collections.Generic; namespace NumGuess { class Program { static void Main(string[] args) { List<int> resL...原创 2019-10-12 09:49:18 · 225 阅读 · 0 评论