[Solved] C Program Please Follow Instructions Please Int Main First Create Function Determine Wheth Q37272049
C++ Program
Please Follow Instructions
Please have Int Main first
Create a function that will determine whether one value is amultiple of another.
Requirements:
- Call the functionisMultiple.
- Have the function receive twointeger arguments through its parameter list. Name the twovariables x and y.
- The function will return aBoolean result of whether x is a multiple of y.
- Write a driver for thisfunction to test it. Remember, a driver function is simply the mainfunction that is specifically written to test a function.
- Test isMultiple using thefollowing data:
- Test 1: x = 35 and y = 7
- Test 2: x = 25 and y = 3
- Test 3: x = 8 and y = 3
- Test 4: x = 16 and y = 2
- Be sure to print the resultsof each test.
- The message should indicatewhether or not the two numbers are multiples. Do not print true orfalse.
- Do NOT print the message inthe function. The message should be printed within the mainmethod.
- Create an outer loop with aprompt asking the user if they want to enter another set ofnumbers.
Expert Answer
Answer to C++ Program Please Follow Instructions Please have Int Main first Create a function that will determine whether one valu… . . .
OR

