Question: QTSPIM using MIPS (C++ programming) Write a program that inputs 3 numbers A, B, and C. Your program must decide which number is largest, which
QTSPIM using MIPS (C++ programming)
Write a program that inputs 3 numbers A, B, and C. Your program must decide which number is largest, which number is the middle, and which number is the smallest. Finally, it must print out the three numbers in order from smallest to largest. So, for example, if A < B and B > C and A < C then it should print the numbers like so:
A C B
If B < A and C < A and C < B then your program should print the numbers like this:
C B A
There are six possible ways to print three numbers so you may enumerate all the ways to print the numbers, or you may use a more elegant method such as sorting. After printing three numbers, the program MUST return to the beginning and repeat the process by taking 3 more numbers as input. If input number A is 0 then exit the program. Here is a sample run:
Enter number A: 55
Enter number B: 26
Enter number C: 66
26 55 66
Enter number A: 4
Enter number B: 5
Enter number C: 1
1 4 5
Enter number A: 0
Now the program ends. User input is written in italics (you do not need to output italics for user input).
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
