作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我尝试在C++中制作无限斐波那契数列,但经过数个词后,它显示负整数。这是代码:
int main(){
long long int a{0};
long long int b{1};
long long int c{1};
cout<<a<<endl<<b<<endl;
while (true){
cout<<c<<endl;
a=b;
b=c;
c=a+b;
}
}
我猜这是因为long long int的大小限制,但是有什么办法可以像在python中一样打印到无限大吗?
最佳答案
正如其他人提到的那样,没有标准类型具有无限的精度。您将需要使用第三方库,或编写自己的具有此功能的类。
一个实现任意精度整数的此类库是boost multiprecision。
这是计算前500个数字的实现:
#include <boost/multiprecision/cpp_int.hpp>
#include <iostream>
int main()
{
using Int = boost::multiprecision::cpp_int;
Int a{0};
Int b{1};
Int c{1};
std::cout << a << std::endl << b << std::endl;
for (int i = 0; i < 500; ++i)
{
std::cout<< c << std::endl;
a=b;
b=c;
c=a+b;
}
}
Live Example
关于c++ - 如何克服C++中无限斐波那契数列中的负整数输出?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65096864/
我是一名优秀的程序员,十分优秀!