使用高精度计算斐波那契数列
非高精度
Code(Non-high accuracy)
这是不用高精度的代码
#include<bits/stdc++.h>
using namespace std;
int main()
{
// freopen("斐波那契数列short_output.out","w",stdout);
unsigned long long x=,y=,t;
cout<<x<<endl<<x<<endl;
while(x<)
{
t=x;
x=x+y;
y=t;
cout<<x<<endl;
}
cin.get();
return ;
}
计算结果
非高精度版计算结果
高精度
Code(high-accuracy)
代码出现了bug,正在回炉重造中