Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
执行一个 MIPS 程序,给定一个存储在内存中的 3x3 矩阵,执行其对角线的乘法。
1 2 3 4 5 6 7 8 9
由产品屏幕呈现 res = 1x5x9 = 45
我需要一些想法怎么做?请
如果您有编程知识,在任何编程语言中,解析对角矩阵的算法基本相同:循环读取矩阵(“Loop For”)- 通过相同的 xy 位置获取元素(“matrix[i][j] -> i = j") - 相乘。
您应该在 MIPS 中找到有关示例代码的资源,以了解它是如何工作的。输入和输出工作由著名的“系统调用”完成。该链接是一个很好的总结。
Pd:¿Español,不是吗?
tag