Sunday, December 5, 2021

Divisible By 16 in C++

 A simple program that I wrote to display numbers that are divisible by 16 using C++ programming language.

I am currently accepting programming work, IT projects, school and application development, programming projects, thesis and capstone projects, IT consulting work, computer tutorials, and web development work kindly contact me in the following email address for further details.  If you want to advertise on my website kindly contact me also in my email address also. Thank you.

My email address is the following jakerpomperada@gmail.com, jakerpomperada@aol.com, and jakerpomperada@yahoo.com.

My mobile number here in the Philippines is 09173084360.



Program Listing

//  Check if any number is dividable by 16 without using / and %
//  operators.

#include <iostream>
#include <iomanip>

bool is_divisible_by_16(int num)
{
    if (num < 0)
        num = -num;

    while (num > 0)
    {
        num -= 16;
        if (num == 0)
            return true;
        else if (num < 0)
            return false;
    }
    return true;
}

int main()
{
    for (int i = 0; i <= 40; ++i)
        std::cout << std::boolalpha  << i  << " is divisble by 16: " << is_divisible_by_16(i) << "\n";
}


No comments:

Post a Comment