使用Assemply 我需要一个填充二维数组的简单代码
更新 那是我到目前为止所得到的。但是我在打印数组时仍有问题!
.data
arrayf: .word 600
msg1: .asciiz "Enter N: "
msg2: .asciiz " rows by "
msg3: .asciiz " values. Enter them: "
doneFill: .asciiz "Done with filling array\n"
.text
main:
li $v0, 4
la $a0, msg1
syscall
li $v0, 5
syscall
move $a1, $v0 # $a1 = N
li $v0, 1
move $a0, $a1
syscall
li $v0, 4
la $a0, msg2
syscall
move $a0, $a1
addu $a0, $a0, 1
li $v0, 1
syscall
li $v0, 4
la $a0, msg3
syscall
la $t1, arrayf
move $t0, $a1
add $t0, $t0, 1
mul $t0, $t0, $a1 # $t0 = N * (N+1)
fill:
li $v0, 6
syscall
swc1 $f0, 0($t1)
addi $t1, $t1, 4
subi $t0, $t0, 1
bnez $t0, fill
li $v0, 4
la $a0, doneFill
syscall
la $t1, arrayf
print
lwc1 $f12, 0($t1)
c.eq.s $f12, $f30
bc1t exit
li $v0, 2
syscall
add $t1, $t1, 4
j print
答案 0 :(得分:0)
使用2个循环,一个用于列,一个用于行。鉴于array[a][b]
,array[x][y]
的偏移量为x + y*a
答案 1 :(得分:0)
我发现了问题。
这是在打印过程中。分支退出的条件是错误的。
感谢@blackbear& @Carl花时间试图帮助我:)