Divisible by 3 and 5
Write a program that asks the user for an integer.
The program should print one of 4 statements:
the number is divisible by 3 and 5,
the number is divisible by 3 but not 5,
the number is divisible by 5 but not 3, or
the number is divisible by neither 3 nor 5.
(This should be done in Codeh)



Answer :

Other Questions