• 2022-06-06
    下列程序段 A 与 B 功能等价,请填写程序段 B 中相应语句。 程序段A: int f( int n )  {              if(n<=1)                               return n;                      else                               return f(n-1)+f(n-2); }  程序B: int f( int n )______;                   t0=0; t1=1; t=n;                     while ( n>1 ) {                          t = t0+t1 ;                          t0 = t1;                          t1 = t;                          n - -;                       }                        return t ;  }