打印出 MIPS 中的舍入浮点数

发布于 2024-07-27 03:29:36 字数 263 浏览 5 评论 0原文

我不知道如何打印出带有一位小数的浮点单数。

我得到“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

童话里做英雄 2024-08-03 03:29:36

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文