aumn 2021-11-06 10:55 采纳率: 100%
浏览 15
已结题

为什么下面的代码跑出的结果不对

![img](https://img-mid.csdnimg.cn/release/static/image/mid/ask/457413761636191.png "=600 #left")


#include<iostream>
#include<cmath>
using namespace std;
int main()
{
    float e(float x);
    float x;
    cout << "请输入x" << endl;
    cin >> x;
    float sinh;
    sinh = (e(x) - e(-x)) / 2;
    cout << sinh;
    return 0;

}
float e(float x)
{
    int  fac(int x);
    float s;
    float m;
    int n;
    s = 1;
    for (n = 1; n <= 1000; n++)
    {
        m = x / fac(n);
        s = s + m;
            x *= x;
    }
    return s;
}
int fac(int x)
{    int s = 1;
    if (x == 0)
        return s;
    else
    {
    
        for (; x >= 1; x--)
            s *= x;
        return s;

    }
}
  • 写回答

1条回答 默认 最新

  • Soda Wang 2021-11-06 14:18
    关注

    img

    中间溢出了。int只能存下12的阶乘,double只能存下170的阶乘。换个算法吧。

    #include <iostream>
    #include <limits>
    
    double factorial(int n) {
        double ret = 1;
        bool int_fl = false;
        for (int i = 1; i <= n; i++) {
            ret *= i;
            if (ret > std::numeric_limits<int>::max() && !int_fl) {
                std::cout << "max factorial that int can store: " << i-1 << "\n";
                int_fl = true;
            }
            if (ret > std::numeric_limits<double>::max()) {
                std::cout << "max factorial that double can store: " << i-1 << "\n";
                break;
            }
        }
        return ret;
    }
    
    int main() {
        int imax = std::numeric_limits<int>::max();
        std::cout << imax << '\n';
        double dmax = std::numeric_limits<double>::max();
        std::cout << dmax << '\n';
        std::cout << factorial(1000) << '\n';
        return 0;
    }
    

    结果:

    2147483647
    1.79769e+308
    max factorial that int can store: 12    
    max factorial that double can store: 170
    inf
    PS D:\src\cpp_back_to_basics> py -c 'import math; print(math.factorial(13)>2147483647)'
    True
    PS D:\src\cpp_back_to_basics> py -c 'import math; print(math.factorial(171)>1.79769e+308)'
    True
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

问题事件

  • 系统已结题 11月14日
  • 已采纳回答 11月6日
  • 创建了问题 11月6日

悬赏问题

  • ¥15 有两个非常“自以为是”烦人的问题急期待大家解决!
  • ¥30 STM32 INMP441无法读取数据
  • ¥100 求汇川机器人IRCB300控制器和示教器同版本升级固件文件升级包
  • ¥15 用visualstudio2022创建vue项目后无法启动
  • ¥15 x趋于0时tanx-sinx极限可以拆开算吗
  • ¥500 把面具戴到人脸上,请大家贡献智慧,别用大模型回答,大模型的答案没啥用
  • ¥15 任意一个散点图自己下载其js脚本文件并做成独立的案例页面,不要作在线的,要离线状态。
  • ¥15 各位 帮我看看如何写代码,打出来的图形要和如下图呈现的一样,急
  • ¥30 c#打开word开启修订并实时显示批注
  • ¥15 如何解决ldsc的这条报错/index error