printf("\n---以上是非递归使用数组方法---\n"); printf("the %d = %d",input,FiB3(input)); printf("\n---以上是非递归使用数组方法---\n"); printf("\nhello world! \n"); return 0; } int FeiBoNaQi( int n ) { // 斐波那契数列 递归计算 //递归算法 assert(n >= 0); if(n==1...