摘要: 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) 编辑