主调函数 n=21 flag=oddeven(n) if flag=0 then output even else output odd endif 被调函数: function oddeven(x) if x mod 2 !=0 return 1 else return 0 endif endfunction 请问上述伪代码运行的结果是_____________。
举一反三
- 主调函数: n=4 f=fact(n) outputf 被调函数: functionfact(x) ifx=1then return1 else returnx*fact(x-1) endif endfunction 请问上述伪代码的运行结果是____________?
- 递归函数f(n)的功能是计算1+2+…+n,且n≥1,则f(n)的代码段是 (49) 。 A: if n>1 then return 1 else return n+f(n-1) B: if n>1 then return 1 else return n+f(n+1) C: if n>1 then return 0 else return n+f(n+1) D: if n<1 then return 0 else return n+f(n-1)
- 使用递归函数计算n!(n=0,1,2,3,…)的是______ A: fac(int n) if(n==0)return 1; else for(i=1;i<=n;i++)f*=i; return f; } B: fac(int n) { if(n==0‖n==1)return 1; else return n*fac(n-1); } C: fac(int n) {int i=1,f=1; if(n==0)return 1; else do{f*=i;}while(i++<n); return f; } D: fac(int n) {int i=1,f=1; if(n==0)return 1; else while(1<=n)f*=i++; return f;
- 下面程序的运行结果是 ________ 。 SET EXACT ON s= "ni"+ space(2) IF s== "ni" IF s= "ni" ? " one " ELSE ? " two " ENDIF ELSE IFs= "ni" ? " three " ELSE ? " four " ENDIF ENDIF RETURN
- There are ( ) basic paths for the following program.int FUN(int count, int flag){ int temp=0; while(count>0){ if(0==flag){ temp=count+100; } else{ if(1==flag) temp=temp+10; else temp=temp+20; } count--; } return temp;} A: 2 B: 3 C: 4 D: 4