2008-04-30 03:16:49 UTC
whether the number is
• an even number, i.e., if the number is divided by 2 there is no remainder.
• divisible by 3, i.e., if the number is divided by 3 there is no remainder
• divisible by 4.
If the number is an even number, the program prints the following message
“You have entered an EVEN number”
If the number is divisible by 3, the program prints the following message
“You have entered a multiple of 3”
If the number is divisible by 4, the program prints the following message
“You have entered a multiple of 4”
The program always ends by printing the number that was entered.