这些小活动你都参加了吗?快来围观一下吧!>>
电子产品世界 » 论坛首页 » 综合技术 » 测试测量 » 用Mars 寫一MIPS 組合語言讀入一正整數n,計算並列印1+2…+n的和。

共2条 1/1 1 跳转至

用Mars 寫一MIPS 組合語言讀入一正整數n,計算並列印1+2…+n的和。

菜鸟
2012-03-21 09:02:22     打赏
void main(){
int n,i,sum; // assume that $s0 is for n, $t0 for i and $s1 for sum
/* MIPS code for reading an integer. */
addi $v0, $zeros, 5
syscall
add $s0, $zeros, $v0
/*---------------------------------------------*/
// mainly translate the following code into MIPS code
sum=0;
for (i=1; i<=n; i++)
sum+=i;

/* MIPS code for printing an integer */
addi $v0,$zero,1
add $a0,$zeros,$s1
syscall
/*--------------------------------------------*/
addi $v0,$zeros,10
syscall
/*---------------------------------------------*/
}



关键词: 寫一     語言     讀入     一正     整數     計算     列印     的和    

助工
2013-08-12 16:08:19     打赏
2楼

addi $v0, $zero, 5
syscall
add $s0, $zero, $v0

# mainly translate the following code into MIPS code
#sum=0;
#for (i=1; i<=n; i++)
#sum+=i;
li $t1, 0 #i
li $s1, 0 #sum
for_1: #for
add $t1, $t1, 1#i++
add $s1, $s1, $t1#sum+=i;
bne $t1, $s0, for_1#i<=n

addi $v0,$zero,1
add $a0,$zero,$s1
syscall

addi $v0,$zero,10
syscall

 


共2条 1/1 1 跳转至

回复

匿名不能发帖!请先 [ 登陆 注册 ]