Advertisement
Guest User

Untitled

a guest
Dec 7th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. // Add module weight
  2. fuel := module/3 - 2
  3. totalFuel += fuel
  4.  
  5. // Add fuel weight
  6. for {
  7. fuel = fuel/3 - 2
  8. if fuel <= 0 {
  9. break
  10. }
  11. totalFuel += fuel
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement