摘要: Action() { //统计字符019aBcd8***,4,4,3 int i,z,t; char *str="019aBcd8***"; fun_Count(str,i,z,t); lr_output_message("存在数字%d 存在字母%d 存在特殊字符%d",i,z,t);//输出000 阅读全文
posted @ 2017-06-13 16:25 Elsa-软件测试工程师 阅读(450) 评论(0) 推荐(0) 编辑
摘要: Action() { //实现一个3位数的倒序输出(123输出321) int n; int m=321; n=fun_mod(m,n); lr_output_message("%d",n); return 0; } int fun_mod(int m,int n){ while(m){ n=n*1 阅读全文
posted @ 2017-06-13 15:07 Elsa-软件测试工程师 阅读(1025) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-06-12 16:48 Elsa-软件测试工程师 阅读(226) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-06-12 16:47 Elsa-软件测试工程师 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-06-02 15:23 Elsa-软件测试工程师 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 1、 2、 3、 4、 5、 6、 阅读全文
posted @ 2017-06-02 15:21 Elsa-软件测试工程师 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 使用LoadRunner在webservice协议下,import service的时候,报错: can not fetch WSDL,the specified WSDL datathe specified WSDL may be incompatible with the selected to 阅读全文
posted @ 2017-05-31 16:35 Elsa-软件测试工程师 阅读(1105) 评论(0) 推荐(0) 编辑
摘要: SQL基本表的增删改 阅读全文
posted @ 2017-05-25 15:48 Elsa-软件测试工程师 阅读(176) 评论(0) 推荐(0) 编辑
摘要: 每次很长时间不用sql语句之后,都需要把基础的捡一捡,索性做个笔记,以后可以长看 阅读全文
posted @ 2017-05-25 15:41 Elsa-软件测试工程师 阅读(135) 评论(0) 推荐(0) 编辑
摘要: SQL 语句执行顺序为: FROM WHERE GROUP BY HAVING SELECT DISTINCT UNION ORDER BY 关于 SQL 语句的执行顺序,有三个值得我们注意的地方: 1、 FROM 才是 SQL 语句执行的第一步,并非 SELECT 。数据库在执行 SQL 语句的第 阅读全文
posted @ 2017-05-23 16:31 Elsa-软件测试工程师 阅读(236) 评论(0) 推荐(0) 编辑