gpt4 book ai didi

c - MPFR 没有正确复制数据

转载 作者:太空宇宙 更新时间:2023-11-03 23:28:37 27 4
gpt4 key购买 nike

#include <stdio.h>
#include <gmp.h>
#include <mpfr.h>
#include <stdlib.h>
#include <math.h>
#include <limits.h>

mpf_t epi;

int main(int argc, char * * argv)
{
mpf_t e;
mpf_t pi;
mpfr_t er;
mpfr_t pir;
FILE *a;
FILE *b;

a = fopen(argv[1], "r");
b = fopen(argv[2], "r");
mpf_set_default_prec(1024048);
mpf_init(e);
mpf_init(pi);
mpfr_set_default_prec(1024048);
mpfr_init(er);
mpfr_init(pir);

gmp_fscanf(a, "%Ff", &e);
gmp_fscanf(b, "%Ff", &pi);
fclose(a);
fclose(b);

mpfr_set_f(er, e, GMP_RNDN);
mpfr_set_f(pir, pi, GMP_RNDN);

gmp_printf("e: %.100Ff\np: %.100Ff\n", e, pi);
mpfr_printf("e: %.100Ff\np: %.100Ff\n", er, pir);

}

代码似乎都是正确的,它应该将e复制到er,将pi复制到pir。当我运行该程序时,这是我得到的:

Ethans-MacBook-Pro:epi phyrrus9$ ./epi a.txt b.txt 
e: 2.7182818284590452353602874713526624977572470936999595749669676277240766303535475945713821785251664274
p: 3.1415926535897932384626433832795028841971693993750806787344699335531291632367535989328301032625839375
e: 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
p: 0.0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

我的问题是,我使用的舍入模式有问题吗?因为第二个e和p不应该为零。

最佳答案

复印没问题,就是打印坏了。

如果你看5.9.2 in the manual ,您会发现应该使用 %Rf 指定 mpfr_t 值,而不是为 mpf_t 保留的 %Ff >.

关于c - MPFR 没有正确复制数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20643061/

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