
学习
文章平均质量分 75
z铭
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
poj-2403-cup
题目描述The WHU ACM Team has a big cup, with which every member drinks water. Now, we know the volume of the water in the cup, can you tell us it height?The radius of the cup‘s top and bottom原创 2015-03-01 17:43:08 · 504 阅读 · 0 评论 -
sql 添加字段备注和查看已添加表的备注
- - - - - - - - - -- - - - - - - -- -- - - - - - - - - - - - - - - - - - - - - - -- - - - - ---- - - -- --- -sp_addextendedproperty [ @name = ] { 'property_name' } [ , [ @value = ] { 'v转载 2015-03-19 17:52:41 · 1329 阅读 · 0 评论 -
正则表达式
一、校验数字的表达式1 数字:^[0-9]*$2 n位的数字:^\d{n}$3 至少n位的数字:^\d{n,}$4 m-n位的数字:^\d{m,n}$5 零和非零开头的数字:^(0|[1-9][0-9]*)$6 非零开头的最多带两位小数的数字:^([1-9][0-9]*)+(.[0-9]{1,2})?$7 带1-2位小数的正数或负数:^(\-转载 2015-12-26 11:37:54 · 376 阅读 · 0 评论