作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚刚开始学习 C。所以为了练习,我决定编写一个利率计算器,但由于某种原因,我的计算结果总是为 0,我无法弄清楚。如果可以的话请看一下。
#include <stdio.h>
main()
{
int time;
float principle, rate, total;
printf("What is your starting amount? ");
scanf(" %f", &principle);
printf("What is your interest rate? ");
scanf(" %f", &rate);
printf("How long do you want to save? ");
scanf(" %d", &time);
total = principle * rate * time;
printf("You will have earned an interest amount of $%d", total);
return 0;
}
最佳答案
printf("You will have earned an interest amount of $%d", total);
由于 total
是 float ,因此 %d
应为 %f
。另外,在每行末尾添加一个新行也是一个很好的做法。
printf("You will have earned an interest amount of $%f\n", total);
关于c - 利率计划,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36923660/
我需要 Euribor 利率来计算网站上的抵押贷款利率。有谁知道是否有提供此数据的服务,可能是 XML 格式?RSS 提要可以,免费或付费。谢谢! 最佳答案 有这样的服务的商业供应商: http://
我是一名优秀的程序员,十分优秀!