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

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

my code? #include using namespace std; bool isDivisibleBy(int n, int d){ if(n%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: 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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!