gpt4 book ai didi

c++ - 如何使从科学计数法的转换更精确?

转载 作者:行者123 更新时间:2023-12-02 10:30:42 25 4
gpt4 key购买 nike

当我尝试将数字从1e + 050转换为其自然形式时,它显示我100000000000000007629769841091887003294964970946560,而不是100000000000000000000000000000000000000000000000000000000。如何使转换更精确?这是代码;

#include <iostream>
#include <math.h>
#include <stdint.h>
#include <string.h>
#include <iomanip>
using namespace std;
long double range, a, b;
int main(int argc, char** argv) {
range = pow(10,50);
cout << "enter a and b" << endl;
cin >> a >> b;
cout.setf(ios::fixed);
if((a >= range)||(b >= range)||(a <= -range)||(b <= -range)){
cout << "the number is too large" << endl;
}
else{
cout << "a+b= " << a + b << endl;
cout << "a-b= " << a - b << endl;
cout << "a*b= " << a * b << endl;
}
cout << range << endl;
return 0;
}

最佳答案

double可以精确表示的唯一数字是可以通过将+/-2⁵³范围内的整数乘以或除以2的整数来产生的。值1E22为2,384,185,791,015,625乘以4,194,304,即该形式的值(请注意2×3为9,007,199,254,740,992)。比那大十的幂不是那种形式。

关于c++ - 如何使从科学计数法的转换更精确?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62353478/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com