gpt4 book ai didi

c - C 初学者,浮点变量在算术后输出为 "0.00"。

转载 作者:太空狗 更新时间:2023-10-29 16:09:10 25 4
gpt4 key购买 nike

我是 C 的新手,我在使用将美元转换为欧元的基本程序时遇到了问题。当我打印最终输出时,美元和欧元金额都是“0.00”。这是我的代码:

#include<stdio.h>

main()

{
float usd = 0.00;
float euro = 0.00;
const float conversion = 0.75;

printf("Please enter the amount of USD you want to convert to Euros: ");
scanf("%f", &usd);

euro = (usd * conversion);
printf("\n%.2f USD equals %.2f Euros.", &usd, &euro);


getch();
return 0;
}

提前致谢

最佳答案

printf 行更改为:

printf("\n%.2f USD equals %.2f Euros.", usd, euro);

您传递的是 usdeuro 的地址,而不是值本身。

关于c - C 初学者,浮点变量在算术后输出为 "0.00"。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7669664/

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