Advertisement
vnevermore

Askhsh 4

Feb 3rd, 2015
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.13 KB | None | 0 0
  1. public class Multiple
  2. {
  3.     public boolean isMultiple(int x , int y)
  4.     {
  5.         if(x%y==0)
  6.             return true;
  7.         else
  8.             return false;
  9.     }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement