Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Please help me in this, Write a simple MIPS program that does the following (there is C++ sample code below to explain the logic): Create

  1. Please help me in this, Write a simple MIPS program that does the following (there is C++ sample code below to explain the logic): Create an array of 21 INTEGERS, you can put whatever you want in it, but they shouldnt be sorted. Without using recursion:

    1. Create a procedure to find the largest called Findlargest
    2. Create a procedure to find the smallest called Findsmallest.
    3. Create procedure called range, which is the difference between largest and smallest (range should call findLargest and findSmallest)

  1. Here is the sample of C++ Code
  2. #include "pch.h" //Theres no equivalent to this in MIPS so ignore it

    #include //theres no equivalent to this either.

    int theArray[] = { 5, 7, 1, 4, 9, 11, 15, 0, -1 };

    int findLargest()

    {

    int temp = theArray[0];

    for (int i = 0; i < 10; i++)

    if (temp < theArray[i])

    temp = theArray[i];

    return temp;

    }

    int findSmallest()

    {

    int temp = theArray[0];

    for (int i = 0; i < 10; i++)

    if (temp > theArray[i])

    temp = theArray[i];

    return temp;

    }

    int findRange()

    {

    return findLargest() - findSmallest();

    }

    int main()

    { std::cout << findLargest() << std::endl;

    std::cout << findSmallest() << std::endl;

    std::cout << findRange() << std::endl;

    }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

1 2 3 Data Base Techniques

Authors: Dick Andersen

1st Edition

0880223464, 978-0880223461

More Books

Students also viewed these Databases questions

Question

3. You can gain power by making others feel important.

Answered: 1 week ago