Question: c++ program Problem (2): Write the following modular program in C++ a. Write a function swap that takes two integer numbers and swap them (interchange
c++ program
Problem (2): Write the following modular program in C++ a. Write a function swap that takes two integer numbers and swap them (interchange their values) b. Write a function readPair that reads two integer numbers each of which should be greater than O and if the second integer is less than the first, the function swap is called to interchange the values of the two integers. c. Write a function multiple that determines for a pair of integers whether the second integer is a multiple of the first. The function should take two integer arguments and return true if the second is a multiple of the first, false otherwise. d. Write a main function that will test k pairs of integer numbers. For each pair, the function readPair is called first to enter values for the two integer numbers, then the function multiply is called to test the two numbers. The program should print out the values of the two integers together with a message notifying whether the second integer is multiple of the first, or not
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
