Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. package Main.LabWork;
  2.  
  3. public class LabWork_1_4_1 {
  4. public static void main(String[] args) {
  5. byte b1 = 56;
  6. int b2 = 76755;
  7. float b3 = 76.9786F;
  8. double b4 = 876d;
  9. long b5 = 89L;
  10. char b6 = 'H';
  11. boolean b7 = true;
  12. short b8 = 876;
  13. System.out.println(b1);
  14. System.out.println(b2);
  15. System.out.println(b3);
  16. System.out.println(b4);
  17. System.out.println(b5);
  18. System.out.println(b6);
  19. System.out.println(b7);
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement