melttt 2016-03-15 13:14 采纳率: 50%
浏览 1121

这个可以精确e的1000次代码的算法是什么意思

int main()
{
    const int N = 1000;
    int a[N];
    int s = 1;
    for (int n = N; n >= 1; --n)
    {
        int r = s % n;
        s = s / n + 1;
        for (int i = 0; i < N; ++i)
        {
            r = r * 10 + a[i];
            a[i] = r / n;
            r %= n;
        }
        for (int i = N - 1; i > 0; --i)
        {
            a[i - 1] += a[i] / 10;
            a[i] %= 10;
        }
        s += a[0] / 10;
        a[0] %= 10;
    }
    printf("%d.", s);
    for (int i = 0; i < N; ++i)
        printf("%d", a[i]);
    printf("\n");

    return 0;

}

  • 写回答

1条回答

  • mianbaohebg 2016-12-17 15:04
    关注

    error reading the project file or the SLD configuration
    各位大神 http://hub.qgis.org/projects/quantum-gis/wiki/QGIS_Server_Tutorial#QGIS-Server-configuration
    我按照链接的步骤 安装了OsGeo4W-Installer 用Windows7 系统
    appache 安装似乎不正确,因为链接不

    评论

报告相同问题?

悬赏问题

  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!
  • ¥15 drone 推送镜像时候 purge: true 推送完毕后没有删除对应的镜像,手动拷贝到服务器执行结果正确在样才能让指令自动执行成功删除对应镜像,如何解决?
  • ¥15 求daily translation(DT)偏差订正方法的代码
  • ¥15 js调用html页面需要隐藏某个按钮
  • ¥15 ads仿真结果在圆图上是怎么读数的
  • ¥20 Cotex M3的调试和程序执行方式是什么样的?
  • ¥20 java项目连接sqlserver时报ssl相关错误
  • ¥15 一道python难题3
  • ¥15 牛顿斯科特系数表表示