首页 > 其他 > 详细

homework2:给出代码,回答问题

时间:2017-03-01 00:12:24      阅读:145      评论:0      收藏:0      [点我收藏+]

本次作业要求如下:

技术分享

技术分享

答案:

1.Identify the fault.

在第一个程序中,for循环的判断条件是i>0,这就导致循环的时候不会读到x数组中的第一位,可能造成错误。

在第二个程序中,函数想做的是找到最后一个0的位置,但是这个循环是从前往后数的,i依次加1,这就导致:若数组中有多个0,那么只会返回第一个0对应的位置,而不是最后一个0的位子。所以如果改成从后往前数,i从x.length-1开始依次减1就可以了。

 

2. If possible, identify a test case that does not execute the fault. (Reachability)

第一个程序:可以令x=[1,4,5],y=4,  Excepted=1

第二个程序:可以令x=[2,3,0,4],  Excepted=2

 

3.If possible, identify a test case that executes the fault, but does not result in an error state.

第一个程序:可以令x=[1,4,5,6],y=3,  Excepted=-1

第二个程序:可以令x=[2,3,4,5],  Excepted=-1

 

4.If possible identify a test case that results in an error, but not a failure.

第一个程序:可以令x=[1,2,3,4],y=1,  Excepted=0

第二个程序:可以令x=[2,0,4,0],  Excepted=3

 

homework2:给出代码,回答问题

原文:http://www.cnblogs.com/cricketvaxes/p/6481717.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!