当给定一个字符串时,返回一个 INT - MIPS
我对我的 MIPS 作业有一点疑问,给定一个字符串,我必须返回一个等于该字符串的 int (该字符串由整数组成)。我不知道该怎么做,有人可以给我动力吗?
i got one little doubt with my MIPS homework, i have to, given a string, return an int equal to the string (the string is made of ints). I have no idea how to do this, can anyone give me a boost?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想你要做的就是按照 atoi() 的方式将字符串转换为整数。您可以查看该函数的实现以获取提示。
I suppose that what you have to do is to convert a string to an integer in the way that atoi() does. You could have a look at an implementation of that function for hints.