gpt4 book ai didi

c - 为什么两个整数相除得不到 float ?

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

<分区>

谁能解释为什么 b 虽然是 float 但除以整数时会在这里四舍五入?

#include <stdio.h>

void main() {
int a;
float b, c, d;
a = 750;
b = a / 350;
c = 750;
d = c / 350;
printf("%.2f %.2f", b, d);
// output: 2.00 2.14
}

http://codepad.org/j1pckw0y

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