Question

Create a procedure to take three numbers from the caller and return the smallest of the...

Create a procedure to take three numbers from the caller and return the smallest of the three numbers. Also create a sample call to the procedure. This should be done in x86

0 0
Add a comment Improve this question Transcribed image text
Answer #1

Program in C++ to take 3 numbers and find the minimum one from them.

#include<iostream.h>

#include<conio.h>

int smallest(int a, int b, int c)

{

int min=a;

if(min<b)

{

min=b;

}

if(min<c)

{

min=c;

}

return min;

}

int main()

{

int s;

s=smallest(4,2,7);

cout<<s;

}

Add a comment
Know the answer?
Add Answer to:
Create a procedure to take three numbers from the caller and return the smallest of the...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • In MIPS Create array of 11 float numbers, Call the procedures findLargestFloat, findSmallestFloat, and rangeFloat. Range...

    In MIPS Create array of 11 float numbers, Call the procedures findLargestFloat, findSmallestFloat, and rangeFloat. Range float is the difference between largest float and smallest float. Also, Create a recursive procedure to find the largest (call it findLargestRecursive), to find largest float in array

  • In Assembly - Call Mul from a procedure Create a procedure, and in that procedure multiply...

    In Assembly - Call Mul from a procedure Create a procedure, and in that procedure multiply two numbers together using mul. Then call the procedure from the main procedure. - Do bitwise mulitiplication using only shift and add statements In your multiplication procedure multiply two numbers not using mul but by combining a fixed number of shift and add commands. For this part you only need to be able to handle 8 bit numbers so you don't need to use...

  • Using Racket Create a Racket procedure compute_pos that reads numbers from the keyboard until 0 is...

    Using Racket Create a Racket procedure compute_pos that reads numbers from the keyboard until 0 is read, count how many positive numbers are read, and also compute the sum of only positive numbers, and display the count and the sum of positive numbers in different lines. Note that 0 is not included in the computations. For example, if user enters: 3 6 -4 12 15 -9 -24 4 -3 -5 1 0 then your procedure should print positive count: 6...

  • Using MASM Please! Part 1: Call Mul from a procedure (50 pts) Create a procedure, and in that pro...

    Using MASM Please! Part 1: Call Mul from a procedure (50 pts) Create a procedure, and in that procedure multiply two numbers together using mul. Then call the procedure from the main procedure. Part 2: Do bitwise mulitiplication using only shift and add statements (30 pts) In your multiplication procedure multiply two numbers not using mul but by combining a fixed number of shift and add commands. For this part you only need to be able to handle 8 bit...

  • Create a program that will determine the even number(s) from a list of numbers. Your program...

    Create a program that will determine the even number(s) from a list of numbers. Your program should create and call a function FindEven that accepts a list of numbers and returns a list of only the even numbers in sorted order. Note that the original list is given in the starter code. def body(): numberlist = [1, 1000, 5, -3, 2, 16 # Write your code here and notice level # Do NOT include: if __name__ == been provided for...

  • Create a new program in Mu and save it as ps3.4.1.py and take the code below...

    Create a new program in Mu and save it as ps3.4.1.py and take the code below and fix it as indicated in the comments: # Write a function called hide_and_seek. The function should # have no parameters and return no value; instead, when # called, it should just print the numbers from 1 through 10, # follow by the text "Ready or not, here I come!". Each # number and the message at the end should be on its own...

  • QUESTION 11 Which instruction is used to return from a user function to its caller? return...

    QUESTION 11 Which instruction is used to return from a user function to its caller? return eret jal jr 1 points    QUESTION 12 Which of the following is the best description of memory mapped input/output (MMIO)? the ability to use a common address space to access memory as well as input/output devices. the ability to read characters from the keyboard the ability to interrupt the CPU when the result of an operation involving an IO device is complete. the...

  • JAVA PROGRAMMING PLEASE This lab has three parts: Create an ArrayList class. Create a LinkedList class....

    JAVA PROGRAMMING PLEASE This lab has three parts: Create an ArrayList class. Create a LinkedList class. Print out the results after testing each of the methods in both of the classes and solving a simple problem with them. Task 1 – ArrayList Class Create an ArrayList class. This is a class that uses an internal array, but manipulates the array so that the array can be dynamically changed. This class should contain a default and overloaded constructor, where the default...

  • Write a procedure that generates an array of Fibonacci numbers as its return value. The input...

    Write a procedure that generates an array of Fibonacci numbers as its return value. The input to the procedure should be an integer n greater than or equal to two that specifies the desired size of the array. Here is how such a procedure would appear in a main(): int main() { long* fibs; fibs = make_fibs(10); for (int k=0; k<10; k++) cout << fibs[k] << " "; cout << endl; return 0; } This code should produce the output:...

  • CE – Return and Overload in C++ You are going to create a rudimentary calculator. The...

    CE – Return and Overload in C++ You are going to create a rudimentary calculator. The program should call a function to display a menu of three options: 1 – Integer Math 2 – Double Math 3 – Exit Program The program must test that the user enters in a valid menu option. If they do not, the program must display an error message and allow the user to reenter the selection. Once valid, the function must return the option...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT