Page 1 of 1

Don't copy someone's work.. REAAAD THE QUESTION CAREFULLY use mips assembly to solve it.. use mips with the version wher

Posted: Wed Apr 27, 2022 3:50 pm
by answerhappygod
Don't copy someone's work.. REAAAD THE QUESTION CAREFULLY
use mips assembly to solve it.. use mips with the version where
you write labels like this: L1: .asciiz "Enter"
Don T Copy Someone S Work Reaaad The Question Carefully Use Mips Assembly To Solve It Use Mips With The Version Wher 1
Don T Copy Someone S Work Reaaad The Question Carefully Use Mips Assembly To Solve It Use Mips With The Version Wher 1 (99.09 KiB) Viewed 29 times
Q#2: It is required to write a MIPS assembly program that does the following: 1. Asks the user to enter a list of floating point numbers and read them. 2. Sort the floating point numbers using any sorting algorithm of your choice and display the sorted numbers. 3. Compute the maximum, minimum and average and display them. A sample execution of the program is shown below: Enter the number of elements in the array: 5 Enter array elements: 20.5 91.2 80.6 95.8 12.4 The sorted array is: 95.8 91.2 80.6 20.5 12.4 The average is 60.1 The maximum is 95.8 The minimum is 12.4