直接使用数学公式解决: #include<bits/stdc++.h> using namespace std; int main(){ int n; int ans = 0; while(cin>>n){ ans = (1 / sqrt(5)) * (pow((1+sqrt(5))/2,n)-pow((1-sqrt(5))/2,n)); cout<<ans<<endl; } }