Task3_GUI

PHOTO EMBED

Thu May 04 2023 13:34:53 GMT+0000 (Coordinated Universal Time)

Saved by @Youssef_Taj

.data

Message_1:.asciiz"Enter first number"

Message_2:.asciiz"Enter second number"

Message_3:.asciiz"Enter third number"

Result:.asciiz"The largest number is "

 

 

.text

li $v0,51

la $a0,Message_1

syscall

move $t0,$a0

 

 

li $v0,51

la $a0,Message_2

syscall

move $t1,$a0

 

li $v0,51

la $a0,Message_3

syscall

move $t2,$a0

 

sge $t3,$t0,$t1

beqz $t3,label1

li $v0,56

move $a1,$t0

la $a0,Result

syscall

j end

label1:

sge $t3,$t1,$t2

beqz $t3,label2

li $v0,56

move $a1,$t1

la $a0,Result

 

syscall

j end

label2:

li $v0,56

move $a1,$t2

la $a0,Result

syscall

end:
content_copyCOPY

Mips