Advertisement
Guest User

Untitled

a guest
Feb 16th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <?php
  2.  
  3. $bank = array(
  4. '2000' => 0,
  5. '1000' => 0,
  6. '500' => 0,
  7. '200' => 0,
  8. '100' => 0,
  9. '50' => 0,
  10. '20' => 0,
  11. '10' => 0,
  12. '5' => 0,
  13. '2' => 0,
  14. '1' => 0
  15. );
  16.  
  17. $income = array(
  18. '500' => 3,
  19. '100' => 1,
  20. '20' => 6,
  21. '10' => 4,
  22. '5' => 5,
  23. '2' => 2,
  24. '1' => 8
  25. );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement