傻瓜问题求助
Why?为什么好像两个程序一模一样,但是却无法输出同样的结果#include <stdio.h>
#include <math.h>
#include <stdlib.h>
int main()
{
float price, area, yir, mir; // 单价、面积、年利率、月利率
float interest, loan; // 利息、贷款总额
float ave_repay, down_payment;// 月均还款、首期付款
float total_price, total_repay; // 房款总额、还款总额
int ratio, time; // 按揭成数、按揭年数
printf("请输入单价(元/平方):");
scanf("%f", &price);
printf("请输入面积:");
scanf("%f", &area);
printf("请输入按揭成数:");
scanf("%d", &ratio);
printf("请输入按揭年数:");
scanf("%d", &time);
printf("请输入当前基准年利率:");
scanf("%f", &yir);
mir = yir / 100 / 12; // 年利率需要除以100得到,因为用户输入是5.4(%),而不是0.054
time = time * 12;
total_price = price * area;
loan = total_price * ratio / 10; // 这里不能写成(ratio / 10),否则结果会变成0
ave_repay = loan * mir * pow((1 + mir), time) / (pow((1 + mir), time) - 1);
interest = ave_repay * time - loan;
total_repay = loan + interest;
down_payment = total_price * (1 - (float)ratio / 10); // 强制转换ratio为浮点型
printf("========== 报告结果 ==========\n");
printf("房款总额:%.2f元\n", total_price);
printf("首期付款:%.2f元\n", down_payment);
printf("贷款总额:%.2f元\n", loan);
printf("还款总额:%.2f元\n", total_repay);
printf("支付利息:%.2f元\n", interest);
printf("月均还款:%.2f元\n", ave_repay);
system("pause");
return 0;
}
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main(void)
{
float price, area, yir, mir; //单价,面积,年利率、月利率
float interest, loan; //利息,贷款总额
float ave_repay, down_payment;//月均还款、首期付款
float total_price, total_repay; //房贷总额、还款总额
int ratio, time; //按揭成数、按揭年数
printf("请输入单位(元/平方):"); // 6000
scanf("%f", &price);
printf("请输入面积:"); // 120
scanf("%f", &area);
printf("请输入按揭成数:"); // 7
scanf("%f", &ratio);
printf("请输入按揭年数:"); // 20
scanf("%f", &time);
printf("请输入当前基准年利率:"); // 5.4
scanf("%f", &yir);
time = time * 12;
mir = yir / 100 / 12;
total_price = price * area;
loan = total_price * ratio / 10;
ave_repay = loan * mir * pow((1 + mir), time) / (pow((1 + mir), time) - 1);
interest = time * ave_repay - loan;
total_repay = interest + loan;
/*down_payment = total_price - loan;*/
down_payment = total_price * (1 - (float)ratio / 10);
printf("============报告结果============\n");
printf("房贷总额:%.2f元\n", total_price);
printf("首期付款:%.2f元\n", down_payment);
printf("贷款总额:%.2f元\n", loan);
printf("还贷总额:%.2f元\n", total_repay);
printf("支付利息:%.2f元\n", interest);
printf("月均还款:%.2f元\n", ave_repay);
system("pause");
return 0;
} 您的编译器难道没有给您任何提示吗?看看这些内容是不是有帮助test.c:17:17: warning: format specifies type 'float *' but the argument has type 'int *' [-Wformat]
scanf("%f", &ratio);
~~ ^~~~~~
%d
test.c:19:17: warning: format specifies type 'float *' but the argument has type 'int *' [-Wformat]
scanf("%f", &time);
~~ ^~~~~
%d
2 warnings generated.可以把警告选项开全一些,编译器不行可以考虑换一个 dolly_yos2 发表于 2022-10-13 10:44
您的编译器难道没有给您任何提示吗?看看这些内容是不是有帮助可以把警告选项开全一些,编译器不行可以考虑 ...
{:10_257:}还真没有提示,要怎么开警告啊,我用的编译器是vs code {:10_266:}我知道为啥了 1613551 发表于 2022-10-13 10:52
还真没有提示,要怎么开警告啊,我用的编译器是vs code
您的编译器恐怕不是 vs code 。因为我一般都是只用 Code 编写然后用命令行的指令编译所以不太确定 vs code 怎么配置,建议搜索一下。
我想的方向是找到为 vs code 调用编译器的指令添加自定义参数的地方然后添加额外的参数如 -Wall, -Wextra, -fsanitize=address ( address 可能相对常用)等。具体的位置您可以搜索一下,这些参数的含义您也可以查找资料来选用其中的部分或者更多。
注意并不是所有编译器和特定编译器的所有版本都支持全部的选项,可能它们的某个功能会使用其它的名字,甚至完全不支持某个功能。可以查阅编译器的文档获取更多信息。 dolly_yos2 发表于 2022-10-13 11:03
您的编译器恐怕不是 vs code 。因为我一般都是只用 Code 编写然后用命令行的指令编译所以不太确定 vs cod ...
{:10_266:}我放弃了,看不懂
页:
[1]