Advertisement
Guest User

zagadka

a guest
Mar 24th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. //Co się wyświetli?
  2. public class Main {
  3.  
  4. final static Long A = 128L;
  5. final static Long B = 128L;
  6.  
  7. final static Long C = 127L;
  8. final static Long D = 127L;
  9.  
  10. public static void main(String args[]) {
  11. if (A == B) {
  12. System.out.println("TAK");
  13. } else {
  14. System.out.println("NIE");
  15. }
  16.  
  17. if (C == D) {
  18. System.out.println("TAK");
  19. } else {
  20. System.out.println("NIE");
  21. }
  22.  
  23. }
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement