题目内容

将模拟滤波器变为数字滤波器时,双线性变化法不可设计低通滤波器

A. 对
B. 错

查看答案
更多问题

将模拟滤波器变为数字滤波器时,双线性变化法可设计带通滤波器

A. 对
B. 错

将模拟滤波器变为数字滤波器时,双线性变化法只可设计低通和带通滤波器

A. 对
B. 错

void move(int n,char from,char to){printf("将%d号盘子%c---->%c\n",n,from,to);}void hanoi(int n,char from,char on ,char to){if(n==1)move(1,from,to);else{hanoi(n-1,from,to,on);move(n,from,to);___________________}}

A. hanoi(n-1,to,from,on);
B. hanoi(n-1,from,on,to);
C. hanoi(n-1,on,from,to);
D. hanoi(n-1,on,to,from);

将F=1+1/2+1/3+1/4+...+1/n转化为递归函数,其递归出口是F(1)=1,递归体是( ).

A. F(n)=1/n
B. F(n)=F(n-1)+1/(n+1)
C. F(n)=F(n-1)+1/n
D. F(n)=F(n-1)+1/(n-1)

答案查题题库