题目内容

As Jack lies under the bed, there must be somebody sleeping on top of it.

A. 对
B. 错

查看答案
更多问题

The doctor asks Jack to see him three times a week for two years to cure his fears.

A. 对
B. 错

The doctor charges Jack $200 a visit.

A. 对
B. 错

Jack is willing to pay the amount the doctor charges.

A. 对
B. 错

有以下程序#includevoid fun(int n,int *p){ int f1,f2;if(n==1||n==2) *p=1;else{ fun(n-1,&f1); fun(n-2,&f2);*p=f1+f2;}}main(){ int s;fun(3,&s); printf("%d\n",s);}程序的运行结果是

A. 2
B. 3
C. 4
D. 5

答案查题题库