Question: I keep getting this error message, is there something wrong about my code? #include using namespace std; bool isDivisibleBy(int n, int d){ if(n%d == 0){

I keep getting this error message, is there something wrong about my code?
#include
using namespace std;
bool isDivisibleBy(int n, int d){ if(n%d == 0){ return true; } else{ return false; } } int main(){ int n; int d; cout>n; cout>d; if(isDivisibleBy(n,d)){ cout

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: isDivisibleBy (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
