一、比较语句大部分和其他的语言一样,这里注意、条件语句如下几种形式ifif ..else.. endif..elsif..else..endunless(if not)case..whenx=1if x==1 puts 1elsif x==2 puts 2else puts 3...
分类:
其他好文 时间:
2014-06-28 10:13:10
阅读次数:
265
?C程序设计笔记第一课单词:main 主函数 else 否则int 整数型 for 循环float 浮点型 while 当...的时候char 字符型 swichprintf 输出函数 case 案例scanf 输入函数 default 默认 if 如果 ...
分类:
其他好文 时间:
2014-06-27 16:38:12
阅读次数:
263
这里需要使用到case when语句,这个就是sql中的if else语句: select a.ins_id, b.product_id, b.product_name, c.cust_id, c.cust_name, c.cust_sex, c.cust_age, c.family_num, --...
分类:
数据库 时间:
2014-06-27 16:11:21
阅读次数:
297
SQL查询语句行转列横向显示2011-03-15 10:00:14|分类: sql |标签:resource |举报 |字号大中小订阅 在SQL查询语句行转列横向显示中access中没有CASE,要用IIF代替select iif(sex= '1 ', '男 ', '女 ') from tablen...
分类:
数据库 时间:
2014-06-27 15:32:03
阅读次数:
427
最近在做一些OM Mapping的准备工作,新学了一招。 如果要将System.Data.Dbtype转换为System.Data.SqlDbType,以前以为要写Switch Case语句。其实有很简单的方法: private System.Data.SqlDbType ConvertToSqlD...
分类:
数据库 时间:
2014-06-27 12:57:18
阅读次数:
194
while (msg == NULL && GetVarint32(&input, &tag)) { switch (tag) { case kComparator: if (GetLengthPrefixedSlice(&input, &str)) { comparator_ = str.ToSt...
分类:
其他好文 时间:
2014-06-27 11:27:20
阅读次数:
179
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 d...
分类:
其他好文 时间:
2014-06-27 10:18:32
阅读次数:
151
条件判断式if..then、case..esacif..then是最常见的条件判断式,就是当负某个条件判断的时候,就进行某项工作,其中"&&"代表AND,"||"代表orif....then..else...fi格式:if[条件判断语句];then当条件判断成立时,可以进行的命令工作内容;
fi//结束if条件判断例子:设..
分类:
其他好文 时间:
2014-06-27 06:15:08
阅读次数:
271
又被抽去做了一段时间的Fitnesse用例的编写,现在case写了几个星期,有点收获,最近会一起整理出来。SetUp这个页面主要被我用来做环境变量的设置了。环境变量的设置:!note这一部分用来在写测试步骤里包含,来定义用户场景。!note比如!note1,用户一($USERNAME_A)注册帐户,密码..
分类:
其他好文 时间:
2014-06-27 06:00:15
阅读次数:
163
Given an array of strings, return all groups of strings that are anagrams.Note: All inputs will be in lower-case.Analysis: 这个题简单的版本是判断两个单词是不是anagram,一...
分类:
其他好文 时间:
2014-06-26 12:47:48
阅读次数:
144