【简答题】下列程序段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 () { ...
【简答题】 下列程序段 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 ) { 第1空 ; t0=0; t1=1; t=n; while ( 第2空 ) { t=第3空 ; t0=t1; t...