Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class Ex3 {
- public static void main(String[] args) {
- int a = 7;
- int b = 5;
- int c = 35;
- boolean result;
- result = (c % a == 0) && (c % b == 0);
- System.out.println(result);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment