单项选择题设n的初始值为正整数,设计一个递归算法如下:int fact (int n) {if (n<=0) return 1;else return (n*fact(n-1));}以下叙述中正确的是______。
单项选择题关于软件测试,以下叙述中错误的是______。