Question: In cpp Task A. Is divisible? Write a program numbers.cpp that defines a function bool isDivisibleBy(int n, int d) If n is divisible by d
Task A. Is divisible? Write a program numbers.cpp that defines a function bool isDivisibleBy(int n, int d) If n is divisible by d , the function should return true otherwise return false. For example: sDivisibleBy (100, 25) -. true isDivisibleBy (35, 17)false The program should also have a main function that tests your code. For example, it can ask the user to input two integer numbers and print Yes if the first number is divisible by the second otherwise print No
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
