Assignemnt #12 Variables And Names

Code

   
    /// Name: Jake Johnson
    /// Period: 7
    /// Program Name: Variables And Names
    /// File Name: VariablesAndNames.java
    /// Date Finished: 9/10/2015
    public class VariablesAndNames
{
 public static void main ( String[] args )   
 {
    int cars, drivers, passengers, cars_not_driven, cars_driven;//creates 5 integer variables that can be accessed
    double space_in_car, carpool_capacity, average_passengers_per_car; //creates 3 double variables
     
     cars = 100;
     space_in_car = 4.0; //if this number was just 4 it would not change anything because it is a double variable meaning that it can store decimal values and not just integers
     drivers = 30;
     passengers = 90;
     cars_not_driven = cars - drivers;
     cars_driven = drivers;
     carpool_capacity = cars_driven + space_in_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

This should work