gpt4 book ai didi

在 C 中计算 APY 公式

转载 作者:太空宇宙 更新时间:2023-11-04 03:36:21 25 4
gpt4 key购买 nike

我正在尝试计算一个 APY 公式,在编译时它会在有输入时输出 0.0000。我不知道我的代码是否有错误或我编译它的方式有错误,但当输入 .06 时,答案应该输出到 .0618。

    /* "APY.c", APY Calculator
Name: Tanner Oelke
Date: 2015/09/01
*/

#include <stdio.h>
#include <stdlib.h>
#include <math.h>

int main(void) {
//define variables
double apy, nominalIntRate;

//ask user for interest rate
printf("Please enter nominal interest rate:");
scanf("%lf", &nominalIntRate);

//calculates apy
apy = exp(nominalIntRate) -1;

printf("The APY is: %.4lf\n", &nominalIntRate);

return 0;

}

最佳答案

你的框架很好,但是你的程序有两个缺陷。首先,scanf 获取一个指向它读入的变量的指针,以便能够改变它们的值,但是 printf 不需要指针,只需要值。其次,你应该打印你想要的值,而不是其他值。线路

printf("The APY is: %.4lf\n", &nominalIntRate);

应该阅读

printf("The APY is: %.4lf\n", apy);

关于在 C 中计算 APY 公式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32408598/

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