Guest User

Untitled

a guest
Jun 17th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. for(Food f : Food.foodList){
  2. System.out.println(f.eaten+" "+(f.type.equals(newType))+f.date.compareDate(f.date, new Date(input)));
  3. if (f.eaten==false&f.type==newType&f.date.compareDate(f.date, new Date(input))){
  4. System.out.println("1 unit of " + f.type + " that should be eaten before " + f.useBy.toString(f.useBy));
  5. }
  6. }
Add Comment
Please, Sign In to add comment