Advertisement
Guest User

Untitled

a guest
Apr 1st, 2020
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. public static void main(String[] args) {
  2. byte weeksInYear = 52;
  3. byte weeksIn3Years = (byte) (52 * 3);
  4. System.out.println(weeksIn3Years > weeksInYear);
  5. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement