当n=5时,下列函数的返回值是(     )。
int fin( int n)
{
    if( n<=2 )
     return n;
  return fin( n-1 ) + fin( n-2 );
} A.

5 B.

7 C.

8 D.

10