2015年6月5日

C# 图片识别技术(支持21种语言,提取图片中的文字)

摘要: 图片识别的技术到几天已经很成熟了,只是相关的资料很少,为了方便在此汇总一下(C#实现),方便需要的朋友查阅,也给自己做个记号。图片识别的用途:很多人用它去破解网站的验证码,用于达到自动刷票或者是批量注册的目的,但我觉得它最吸引我的地方是可以让一些书写的东西,自动识别成电脑上的文字,比如说手拟的合同,... 阅读全文

posted @ 2015-06-05 10:35 16932970 阅读(16740) 评论(2) 推荐(0) 编辑

2015年3月11日

第九讲 C#练习题

摘要: 1、接收一个整数N 如果N是正数就输出1·N如果是负数就提示出错输出由丰老师提供 -_-~2、编一个程序,从三个红球,五个白球,六个黑球中任意取出八个球,且其中必须有白球,输出所有可能的方案。3、编一个程序,楼梯有n阶阶梯,每次只能走一阶或者两阶,问,有多少种走法?以上由王珂老师提供。4、小超市10... 阅读全文

posted @ 2015-03-11 16:53 16932970 阅读(270) 评论(0) 推荐(0) 编辑

2015年3月7日

c#基础 第八讲

摘要: static void Main(string[] args) { while (true)//一直循环 { Random r = new Random();//创建随机函数r ... 阅读全文

posted @ 2015-03-07 13:50 16932970 阅读(141) 评论(0) 推荐(0) 编辑

2015年3月4日

c#基础 第六讲

摘要: 烧开水先询问:“是否要烧开水(Y/N)”是的话执行--0°--100°(30°---水温了,50°---水热了,80°---水快开了,100°---水已经开了, 结束。)判断 循环 选择 跳转闹钟服务定义需要提醒的时间(2015-03-04 18:30)看新闻联播。。。。。获取当前时间,时间以分钟... 阅读全文

posted @ 2015-03-04 16:55 16932970 阅读(153) 评论(0) 推荐(0) 编辑

2015年3月2日

c#基础 第五讲

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApplication2{ class... 阅读全文

posted @ 2015-03-02 17:12 16932970 阅读(138) 评论(0) 推荐(0) 编辑

c#基础 第四讲

摘要: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks;namespace ConsoleApplication2{ class... 阅读全文

posted @ 2015-03-02 10:47 16932970 阅读(173) 评论(0) 推荐(0) 编辑

2015年3月1日

c#基础 第三讲

摘要: Random r = new Random(); string x, y; while (true) { int a = r.Next(0, 3); int b = r.Next(0, 3); switch (a) { case 0://剪刀 x = "剪刀"; break; ... 阅读全文

posted @ 2015-03-01 17:14 16932970 阅读(127) 评论(0) 推荐(0) 编辑

2015年2月28日

c#基础 第二讲

摘要: 判断一个人的体重是否为标准体重 计算公式:男生:体重(kg)-身高+100=±3(在此范围内为标准体重) 女生:体重(kg)-身高+110=±3using System; using System.Collections.Generic; using System.Diagnostics; usin... 阅读全文

posted @ 2015-02-28 16:25 16932970 阅读(144) 评论(0) 推荐(0) 编辑

2015年2月27日

c#基础 第一讲

摘要: using System;using System.Collections.Generic;using System.Text;namespace MYTest{ class Program { static void Main(string[] args) ... 阅读全文

posted @ 2015-02-27 16:58 16932970 阅读(110) 评论(0) 推荐(0) 编辑

二进制转换,八进制,十六进制转换

摘要: 计算器的转换手动转换10转2,转8 转16。2转8 转16模型向外除全取余模型向内展开相加 阅读全文

posted @ 2015-02-27 13:45 16932970 阅读(162) 评论(0) 推荐(0) 编辑

导航