码迷,mamicode.com
首页 >  
搜索关键字:low case    ( 12880个结果
关于erlang的向上取整和向下取整
在erlang的API中,erlang:trunc/1 是就近取整,erlang:round/1是四舍五入的,整理下:对于正数的向上和向下取整,1 %% 向上取整2 ceil(N) ->3 T = trunc(N),4 case N == T of5 true ...
分类:其他好文   时间:2014-06-26 22:57:07    阅读次数:1630
每天进步一点点之SQL 获取表中某个时间字段离当前时间最近的几条
实际中用到的SQL:select * from (select top 3 Id,case when startSignup>GETDATE() then '敬请期待' when (startSignup=getdate()) then '正在报名' when (StartDate=GETDATE(...
分类:数据库   时间:2014-06-26 22:24:35    阅读次数:293
bash 中的case语法
CASE语法格式备忘 1 case $variable-name in 2 pattern1) 3 command1 4 ... 5 .... 6 commandN 7 ;; 8 pattern2|p...
分类:其他好文   时间:2014-06-26 19:48:13    阅读次数:236
创建一个Low-touch Silverlight 集成
你可以创建一个Silverlight应用程序,与SharePoint之间self-contained, low-touch的集成。...
分类:Web程序   时间:2014-06-26 07:40:43    阅读次数:206
二分查找的递归与非递归算法
/*二分查找的递归与非递归算法*/#include #include using namespace std;bool bisrch( int low,int high,int v,int *text ) //递归写法{ int i,mid; mid=( low+high )/2; ...
分类:其他好文   时间:2014-06-25 13:51:56    阅读次数:174
【Leetcode】Length of Last Word
Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string. If the last word does not exist, return 0. Note: A word is...
分类:其他好文   时间:2014-06-25 10:30:08    阅读次数:220
Just a complaint about the college examinations
Well , you know. As a college student who want to find a good job after graduating  like me , scores are not that important. I just want to have some low scores which can help me graduate successfully...
分类:其他好文   时间:2014-06-25 09:59:37    阅读次数:202
Desugar Scala(15) -- unapply和unapplySeq方法
欢迎关注我的新博客地址:http://cuipengfei.me/   实在想不到什么动词可以当做脱衣服来讲了,所以从现在开始这系列博文就叫做Desugar Scala了。除非哪天才思泉涌,又想到了新词:) 开始正文。 名字叫做unapply和unapplySeq的方法在Scala里也是有特殊含义的。 我们前面说过case class在做pattern match时很...
分类:移动开发   时间:2014-06-24 19:42:48    阅读次数:265
POJ2096-Collecting Bugs(概率DP)
Collecting Bugs Time Limit: 10000MS   Memory Limit: 64000K Total Submissions: 2140   Accepted: 1023 Case Time Limit: 2000MS   Special Judge Description Ivan is fon...
分类:其他好文   时间:2014-06-24 19:14:26    阅读次数:182
Introduction to 555 timer 【数字电路】
Introduction to 555 timer 555 定时器 wiki 话说明天考数电,今天晚上最后时刻要搞定 555 timer啊!哈哈 各个引脚的介绍 Pin Name Purpose 1 GND Ground reference voltage, low level (0 V) 2 T...
分类:其他好文   时间:2014-06-24 17:55:26    阅读次数:209
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!