Question: Language is Python Write a program to determine if a positive integer is evenly divisible by 2, 3, 4, or any combination of the three.
Language is Python
Write a program to determine if a positive integer is evenly divisible by 2, 3, 4, or any combination of the three. Print a statement to the screen with the test value and which numbers, 2, 3, or 4, evenly divide into the test value.
Note: There are several ways to accomplish this, but the easiest is to use the modulus operator, %. The operation a%b returns the remainder when you divide a by b. You may wish to run several example of the modulus operator with different values of a and b to familiarize yourself with the operation before writing the divisibility by 2, 3, or 4 program.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
