Codeforces 828B Black Square(简单题) Description Polycarp has a checkered sheet of paper of size n?×?m. Polycarp painted some of cells with black, the ot ...
分类:
其他好文 时间:
2017-07-15 18:00:20
阅读次数:
362
题目 Determine if a Sudoku is valid, according to: Sudoku Puzzles - The Rules. The Sudoku board could be partially filled, where empty cells are filled ...
分类:
其他好文 时间:
2017-07-15 13:52:51
阅读次数:
201
简单的电话拨号程序 先在 AndroidManifest.xml 中加入申请权限代码: 然后布局文件 activity_main.xml 内容为: 接下来修改 MainActivity.java 中代码为: 然后就可以在手机中调试运行,程序可以调用安卓的拨号功能拨出电话。 Android 权限 (来 ...
分类:
移动开发 时间:
2017-07-15 11:18:58
阅读次数:
245
在进行数据库查询时,有完整查询和模糊查询之分。 一般模糊查询语句如下: SELECT 字段 FROM 表 WHERE 某字段 Like 条件 其中关于条件,SQL提供了四种匹配模式: 1,% :表示任意0个或多个字符。可匹配任意类型和长度的字符,有些情况下若是中文,请使用两个百分号(%%)表示。 比 ...
分类:
数据库 时间:
2017-07-14 21:14:03
阅读次数:
192
sub 批量新建指定名称的工作表() Dim i As Integer For i = 2 To 10 '根据实际情况修改i大小 Worksheets.Add after:=Worksheets(ThisWorkbook.Worksheets.Count) ActiveSheet.Name = Sh ...
分类:
编程语言 时间:
2017-07-14 11:55:31
阅读次数:
254
一、概述 说到python的编码,一句话总结,说多了都是泪啊,这个在以后的python的开发中绝对是一件令人头疼的事情。所以有必要要讲讲清楚 二、编码介绍 1、须知: 在python 2中默认编码是 ASCII,而在python 3中默认编码是 unicode unicode 分为utf-32 (占 ...
分类:
编程语言 时间:
2017-07-13 13:30:10
阅读次数:
202
利用表格布局页面的操作流程: 表格布局页面 用户信息表 身份证号码: 姓名: 性别: 男 女 民族: ... ...
分类:
其他好文 时间:
2017-07-12 23:14:22
阅读次数:
122
实验环境: 测试域名daxiangtravel.com,apache根目录/mnt/,测试目录/mnt/qa/test,测试文件名为index.php。 获取代码: 获取当前目录: 1 2 3 4 getcwd(); // /mnt/qa/test dirname(__FILE__); // /mn ...
分类:
Web程序 时间:
2017-07-12 15:09:58
阅读次数:
214
Treblecross is a two player game where the goal is to get three ‘X’ in a row on a one-dimensional board.At the start of the game all cells in the boar ...
分类:
其他好文 时间:
2017-07-12 13:35:45
阅读次数:
141
ENTAuditObject(要追踪审计的对象) Name code type isNull 主键 ENTAuditObjectId int NOT NULL 对象名称 ObjectName varchar(255) NOT NULL 对象完全限定名 ObjectFullyQualifiedName ...
分类:
其他好文 时间:
2017-07-12 01:01:03
阅读次数:
300