打印出 MIPS 中的舍入浮点数
我不知道如何打印出带有一位小数的浮点单数。
我得到“88.09999847”而不是“88.1”。 请告知
例如:如果我注册了 $f10 = '88.09999847'
mov.s $f12, $f10
li $v0, 2
syscall
我得到的输出为“88.09999847”
如何四舍五入到小数点后一位并打印出“88.1”
任何帮助将不胜感激
I am not sure how to print out a floating point single with one decimal place.
I get '88.09999847' instead of '88.1'. Please advise
For example: if I have register $f10 = '88.09999847'
mov.s $f12, $f10
li $v0, 2
syscall
I get output as "88.09999847"
How do I round up to one decimal place and print out "88.1"
Any help would be appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1) 将数字乘以 10(因为四舍五入到小数点后一位。)
2) 将数字压入堆栈(或适当的寄存器。)
3)Round是一个系统调用(在我的机器上,代码是
call roundf
)4) 将结果除以10
1) Multiply the number by 10 (since you're rounding to one decimal place.)
2) Push the number to the stack (or appropriate register.)
3) Round is a system call (on my machine, the code is
call roundf
)4) Divide the result by 10