gpt4 book ai didi

c - 如何设置倒数第二个公式的格式? "monthlyPayment"?继续出现编译错误

转载 作者:行者123 更新时间:2023-11-30 20:36:38 24 4
gpt4 key购买 nike

无法弄清楚每月付款的公式有什么问题,我是编程新手,到目前为止我已经在这个程序上花了 6 个小时。

 void calcStuff(float loan, float rate, int years, float* monthlyPayment,     
float* interestEarned)
{
//Define Variables
float ratePer;
int numPer;
float a;
float b;
float powf( float a , float b );

//Calculate the rate per period and number of periods
ratePer = ( rate / 100 ) / 12;
numPer = years * 12;
a = ( 1 + ratePer );
b = ( -numPer );

//Calculate the monthly payments and the interest earned
*monthlyPayment = (( ratePer * loan ) / ( 1 - powf ));
*interestEarned = (( *monthlyPayment * numPer )-loan );

return;
}

我似乎也无法正确格式化它

最佳答案

正如我的评论中提到的,您的错误可能来自于powf。您可以删除该声明,不需要。

此外,您的 ab 变量也从未被使用过。如果您打算将 monthlyPayment 公式除以 (1 - a^b),则可以使用实际的 powf()函数,在 math.h 中声明:

#include<math.h>
// your code
*monthlyPayment = (( ratePer * loan ) / ( 1 - powf(a, b) ));

哦,别忘了与 -lm 链接以使用 libmath ;)

关于c - 如何设置倒数第二个公式的格式? "monthlyPayment"?继续出现编译错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35512356/

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