Guest User

Untitled

a guest
Feb 25th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. package sit.View;
  2.  
  3. import sit.model.Juice;
  4. import sit.model.Water;
  5.  
  6. public class DrinkTest {
  7. public static void main(String[] args) {
  8. Water d1 = new Water("Montfure",15);
  9. System.out.println(d1);
  10.  
  11. Juice j1 = new Juice("Tipco",12,14.49);
  12. System.out.println(j1);
  13.  
  14. }
  15. }
Add Comment
Please, Sign In to add comment