Bunch Son
-3
Q:

bool function in c++

bool Divisible(int a, int b) {
    int remainder = a % b; // Calculate the remainder of a and b.

    if(remainder == 0) {
        return true; //If the remainder is 0, the numbers are divisible.
    } else {
        return false; // Otherwise, they aren't.
    }
}
1
bool Divisible(int a, int b) {
    return (a % b) == 0;
}
0
bool Divisible(int a, int b) {
    return !(a % b);
}
0

New to Communities?

Join the community