Einheitsprüfung, ob die Zahl mehrfach von x ist

if (number % 3 == 0)
{
	// The number is a multiple of three
}
Creepy Cheetah