vp0415

Ex3

Oct 5th, 2014
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.20 KB | None | 0 0
  1. public class Ex3 {
  2.  
  3.     public static void main(String[] args) {
  4.         int a = 7;
  5.         int b = 5;
  6.         int c = 35;
  7.         boolean result;
  8.         result = (c % a == 0) && (c % b == 0);
  9.         System.out.println(result);
  10.  
  11.     }
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment