Assignment 12; VariablesAndNames

Code

    // Name: Donovan Rich
    // Period: 6
    // Program Name: Variables and Names
    // File Name: VariablesAndNames
    // Date Completed: 9/14/2015
    public class VariablesAndNames {
    
        public static void main( String[] args ) {
        
            int cars, drivers, passengers, cars_not_driven, cars_driven;
            double space_in_a_car, carpool_capacity, average_passengers_per_car;
            //Number of cars?
            cars = 100;
            //How much space is in each car?
            space_in_a_car = 4;
            //How many drivers are available?
            drivers = 30;
            //How many passengers are there?
            passengers = 90;
            //How many cars are not being driven?
            cars_not_driven = cars - drivers;
            // How many cars are being driven?
            cars_driven = drivers;
            //What is the carpool capacity of all the cars?
            carpool_capacity = cars_driven * space_in_a_car;
            //What are the average passengers per car?
            average_passengers_per_car = passengers / cars_driven;
    
    
            System.out.println( "There are " + cars + " cars available." );
            System.out.println( "There are only " + drivers + " drivers available." );
            System.out.println( "There will be " + cars_not_driven + " empty cars today." );
            System.out.println( "We can transport " + carpool_capacity + " people today." );
            System.out.println( "We have " + passengers + " to carpool today." );
            System.out.println( "We need to put about " + average_passengers_per_car + " in each car." );
        }
    }
        

Picture of the output

Assignment 12