Positive SSL
1 18. 下列C/C++程式片段,f(8, 3)輸出為何?
A 3
B 5
C 8
D 11

int f(intx,inty){
  if(x==y) return 0;
  else return f(x-1,y)+1;
}