Advertisement
Zander-Bandoly

Module 2 - Vacation

Sep 15th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. import java.util.*;
  2. import java.io.*;
  3.  
  4. public abstract class Vacation {
  5.  
  6. public double vacBudget = -1;
  7. public String vacDestination;
  8.  
  9. public abstract String budgetCheck();
  10.  
  11. } //end class
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement