gpt4 book ai didi

c - 结果正在汇总 [C]

转载 作者:太空宇宙 更新时间:2023-11-04 05:01:43 24 4
gpt4 key购买 nike

<分区>

我一直在用 C 编写这个程序,我注意到 fee 变量中捕获的除法结果始终具有固定值,即 5.00,但结果应该是 5.78。你能解释为什么它有这种行为吗?我应该怎么做才能解决它?

#include <stdio.h>
#include <stdlib.h>

int main(void){

printf("Input package dimensions: width, heigth, length \n");
int width, height, length;
scanf("%d", &width );
scanf("%d", &height );
scanf("%d", &length );

int weight = width*height*length;
printf("%d\n", weight);
float fee = weight/166;

printf("%.2f\n", fee);
printf("The fee is : $%.2f\n and", fee);

system("pause");
return 0;
}

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