C++ Exercises: Check if a given positive number is a multiple of 3 or a multiple of 7
Multiple of 3 or 7
Write a C++ program to check if a given positive number is a multiple of 3 or a multiple of 7.
Sample Solution:
C++ Code :
#include <iostream>
using namespace std;
// Function to check if the given number is divisible by 3 or 7
bool test(int n)
{
return n % 3 == 0 || n % 7 == 0; // Returns true if the number is divisible by 3 or 7; otherwise, returns false
}
// Main function
int main()
{
cout << test(3) << endl; // Output the result of test function with number 3
cout << test(14) << endl; // Output the result of test function with number 14
cout << test(12) << endl; // Output the result of test function with number 12
cout << test(37) << endl; // Output the result of test function with number 37
return 0; // Return 0 to indicate successful execution of the program
}
Sample Output:
1 1 1 0
Visual Presentation:

Flowchart:

For more Practice: Solve these Related Problems:
- Write a C++ program to check if an input positive number is divisible by 3 or by 7, and print a boolean result.
- Write a C++ program that determines whether a given number is a multiple of 3 or a multiple of 7 using the modulo operator.
- Write a C++ program that reads a number and outputs true if it is divisible by 3 or 7, otherwise false.
- Write a C++ program to verify if a number is a multiple of either 3 or 7, ensuring proper input validation for positivity.
Go to:
PREV : Add Last Character to Front and Back.
NEXT : Add First 3 Characters to Front and Back.
C++ Code Editor:
Contribute your code and comments through Disqus.
What is the difficulty level of this exercise?