Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. import chn.util.*;
  2. public class Troll
  3. {
  4. public static void main(String[] args)
  5. {
  6. ConsoleIO joob = new ConsoleIO();
  7.  
  8. System.out.println("Enter in your glorious first dimension here: ");
  9. double length = joob.readDouble();
  10.  
  11. System.out.println("Enter in your glorious second dimension here: ");
  12. double width = joob.readDouble();
  13.  
  14. System.out.println("Enter in your glorious third dimension here: ");
  15. double height = joob.readDouble();
  16.  
  17. System.out.println("Enter in your glorious fourth dimension here: ");
  18. double weight = joob.readDouble();
  19.  
  20. CheckMail mail = new CheckMail(length, width, height, weight);
  21. }
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement