以KB为单位转换字节数

时间:2017-11-04 12:19:05

标签: byte

我想"转换"给定值(以字节为单位)到KBytes,精度更高。

unsigned int test {

int out_bytes = 0;

out_bytes = InBytes / 1024;

return (out_bytes);

}

如果InBytes是" 139500",out_bytes实际上是136.我想得到136,23。我该怎么办?

感谢您的帮助

0 个答案:

没有答案