6.7k views
13 votes
I need help I would really appreciate it

I need help I would really appreciate it-example-1
User Fasteque
by
5.6k points

1 Answer

5 votes

Answer:

Checks if it is a multiple of 3 and 5

Step-by-step explanation:

Its an if statement using modulus division to check for a remainder. It checks if a number is a multiple of 3 AND 5. (&& and & both mean and in Java).

If the remainder of both is 0 then that means the mystery number is a multiple of both 3 and 5.

User Artvolk
by
5.6k points