作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
无法弄清楚每月付款的公式有什么问题,我是编程新手,到目前为止我已经在这个程序上花了 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
。您可以删除该声明,不需要。
此外,您的 a
和 b
变量也从未被使用过。如果您打算将 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/
无法弄清楚每月付款的公式有什么问题,我是编程新手,到目前为止我已经在这个程序上花了 6 个小时。 void calcStuff(float loan, float rate, int years,
我是一名优秀的程序员,十分优秀!