MIPS 输入获取
如何在 mips 的 main 函数中获取输入?
How to take input in main function in mips?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 mips 的 main 函数中获取输入?
How to take input in main function in mips?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
这取决于。如果你要要求一个整数,它应该是
如果你要要求一个浮点数,它应该是
如果你要要求一个双精度数,它应该是
如果你要要求一个字符串,它应该是
但是,如果您要请求一个字符串并且输入将占用最大字符数,那么在打印它时您应该使用
$a1
而不是$a0
。It depends. If you are going to ask for an integer it should be
If you are going to ask for a float should be
If you are going to ask for a double it should be
And if you are going to ask for an string it should be
But, if you are going to ask for an string and the input is going to take maximum number of characters, then you should use
$a1
instead of$a0
when printing it.