Created
July 26, 2012 19:40
-
-
Save unruthless/3184073 to your computer and use it in GitHub Desktop.
Parking Spot calculator logic
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var qty_parking_spots, | |
square_feet, | |
qty_lubrication_or_service_bay, | |
qty_day_shift_employees; | |
// Automobile or machinery sales and service garages | |
// rule: 1 parking space for each 400 square feet of floor area | |
parking_spots = floor(square_feet / 400); | |
// etc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment