If divisible by 5?

How can I tell if a number is divisible by 5?

The modulo operator

if ( number % 5 == 0 )