标签: byte
我想"转换"给定值(以字节为单位)到KBytes,精度更高。
unsigned int test { int out_bytes = 0; out_bytes = InBytes / 1024; return (out_bytes); }
如果InBytes是" 139500",out_bytes实际上是136.我想得到136,23。我该怎么办?
感谢您的帮助