Created
August 3, 2011 08:37
-
-
Save adaptives/1122184 to your computer and use it in GitHub Desktop.
Exercise 4 (Incorrect 1)
This file contains hidden or 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
| #THIS CODE HAS AN ERROR | |
| cars = 100 | |
| space_in_a_car = 4.0 | |
| drivers = 30 | |
| passengers = 90 | |
| cars_not_driven = cars - drivers | |
| cars_driven = drivers | |
| carpool_capacity = cars_driven * space_in_a_car | |
| average_passengers_per_car = passengers / cars_driven | |
| print "There are", cars, "cars available." | |
| print "There are" only", drivers, "drivers available." | |
| print "There will be", cars_not_driven, "empty cars today." | |
| print "We can transport", carpool_capacity, "people today." | |
| print "We have", passengers, "to carpool today" | |
| print "We need to put about", average_passengers_per_car, "in each car." |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment