Advertisement
Guest User

Untitled

a guest
Dec 7th, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. public boolean payEconomical(LyyraCard card) {
  2. double eLunch = 2.50;
  3. if(balance(card) >= eLunch){
  4. this.economicalSold += 1;
  5. return true;
  6. }else{
  7. return false;
  8. }
  9.  
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement