05 2018 档案

摘要:1 、脚本概要 2、我快要疯了 录了好几次,都没有录制脚本。不知道哪里出错了,loadrunner12 版本据说除了最多只能模拟50个用户外,其他的比11好很多,可以用12录脚本,11来跑,这样就可以模拟大批量请求的情况,目前先把12搞定了吧,50个并发用户对于我们这个系统来说应该够用,不够用的时候 阅读全文
posted @ 2018-05-30 21:33 sunnybowen 阅读(281) 评论(0) 推荐(0) 编辑
摘要:#include struct student{ int num; float score; struct student *next; } ; int main(void){ struct student stu1,stu2,stu3; /*定义3个struct student 类型的变量*/ struct student *head,*p;/*定义2个指向str... 阅读全文
posted @ 2018-05-01 19:27 sunnybowen 阅读(188) 评论(0) 推荐(0) 编辑
摘要:#include struct student{ int num; char name[20]; float score; } stu={112301,"bowen1",20}; void print(struct student stux); int main(void){ print(stu); } void print(struct student stux){ ... 阅读全文
posted @ 2018-05-01 19:12 sunnybowen 阅读(126) 评论(0) 推荐(0) 编辑
摘要:#include struct student{ int num; char name[20]; float score; } stu={112301,"bowen1",20}; void print(struct student *p); int main(void){ print(&stu); } void print(struct student *p){ pr... 阅读全文
posted @ 2018-05-01 19:08 sunnybowen 阅读(160) 评论(0) 推荐(0) 编辑
摘要:#include struct student{ int num; char name[20]; float score; }; int main(void){ struct student stu[3]={112301,"bowen1",20,112111,"bowen2",10,110911,"bowen3",30}; struct student *sp; ... 阅读全文
posted @ 2018-05-01 18:54 sunnybowen 阅读(203) 评论(0) 推荐(0) 编辑
摘要:int main(void){ char c[5]; scanf("%s",c); printf("%s",c); } 阅读全文
posted @ 2018-05-01 18:45 sunnybowen 阅读(586) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示