/* Return true if the given non-negative number is a multiple of 3 or a * multiple of 5. Use the % "mod" operator. */ public boolean or35(int n) { return n % 3 == 0 || n % 5 == 0; }