19.1 LAB: Count multiples
Write a program that takes three integers as input: low, high, and x. The program then outputs the number of multiples of x between low and high inclusive.
Ex: If the input is:
the output is:
Hint: Use the % operator to determine if a number is a multiple of x. Use a for loop to test each number between low and high.
Use Python, please.
Already registered? Login
Not Account? Sign up
Enter your email address to reset your password
Back to Login? Click here