188k views
2 votes
There will be a function called getdouble. This function will simply double any number which is currently in eax and store the result in eax.

There will be a function called gettriple. This function will simply triple any number which is currently in eax and store the result in eax.
There will be a function called getoddeven. This function will check if the value in eax is even. IF it is even, it will call the getdouble function. IF it is odd, it will get the gettriple function. (Note: edx stores remainder after you divide)
Your main program should ask the first user for a name as well as for a number. You should then call the getoddeven function. That function will either double or triple the initial value entered by the user. Display the name and the final result for this first user.
Your program will then do the same for a second user for a name as well as for a number. You will again call the getoddeven function which will either double or triple the value. Display the name and final result for this second user.
Finally, you will compare the two final results of each user and display the name of the one with the bigger final number as well as the number they have.

1 Answer

5 votes

Final answer:

The subject of this question is Computers and Technology. The question asks us to write a program that calls different functions to double or triple a number. We also need to compare the results for two users and display the name and final number for the user with the larger result.

Step-by-step explanation:

The subject of this question is Computers and Technology.

The grade level of this question is High School.

In this program, there are three functions defined: getdouble, gettriple, and getoddeven. The function getdouble doubles the number in eax and stores the result in eax. The function gettriple triples the number in eax and stores the result in eax. The function getoddeven checks if the value in eax is even or odd, and calls the appropriate function (getdouble or gettriple) based on that. The main program asks for the name and number from two users, calls the getoddeven function for each user's number, displays the name and final result for each user, and compares the final results to determine the user with the bigger final number.

Keywords: getdouble, gettriple, getoddeven, main program, even, odd, number.

User Pableu
by
7.1k points