摘要:
网上看到的,所以转一下。1.编写一个递归函数test判断字符串是否为回文,如是返回true,如不是返回false。函数应忽略空字符public bool Test(char[] str,int start, int end){ //去掉空字符 if(start>=end) return true; if(char[start] != chart[end]) return false; else Text(str,start+1,end-1); } 2,设计递归函数,计算n的阶乘。n*(n-1)*(n-2).......2*1public int Cal(int n){ int f ; i 阅读全文
摘要:
[代码] 阅读全文