// Delivery Pricing Calculator (C++)
#include &lt;iostream&gt;
using namespace std;

int main() {
    int depreciation_total = 0;
    const int depreceation_per_hour = 30;
    int days = 0;
    int number_of_skis = 0;

    int Travel_fuel = 0;
    const int Num_one_way_trips = 4;
    const double Price_per_mile = 0.31;
    int distance = 0;

    int Wages_payable = 0;
    const int pay_per_hour = 20;
    int num_team_member = 0;
    const int number_of_trips = 2;
    int hours_of_labor_per_trip = 0;

    int Post_ski_fill_up = 0;
    const int num_of_gallons = 14;
    const int cost_per_gallon = 4;

    int Vehicle_depreciation = 0;
    const double vehicle_health = 0.105;
    const double vehicle_maintenance = 0.38;

    const double profit_needs = 1.2;
    int expense_per_entire_trip = 0;

    int daily_price = 0;

    cout &lt;&lt; "how many miles aways is the costumer?" &lt;&lt; endl;
    cin &gt;&gt; distance;

    cout &lt;&lt; "how many Jet Skis does the costumer want?" &lt;&lt; endl;
    cin &gt;&gt; number_of_skis;

    cout &lt;&lt; "How many days is the constumer renting for?" &lt;&lt; endl;
    cin &gt;&gt; days;
    int hour_usage = 5 * days;

    cout &lt;&lt; "How many team members are doing the drop off?" &lt;&lt; endl;
    cin &gt;&gt; num_team_member;

    cout &lt;&lt; "How many hours will each team member be working per trip? (distance + buffer time)" &lt;&lt; endl;
    cin &gt;&gt; hours_of_labor_per_trip;

    depreciation_total = depreceation_per_hour * hour_usage * number_of_skis;
    Travel_fuel = Num_one_way_trips * Price_per_mile * distance;
    Wages_payable = pay_per_hour * num_team_member * number_of_trips * hours_of_labor_per_trip;
    Post_ski_fill_up = num_of_gallons * number_of_skis * cost_per_gallon;
    Vehicle_depreciation = vehicle_health * distance * vehicle_maintenance * Num_one_way_trips;

    expense_per_entire_trip = Vehicle_depreciation + Travel_fuel + Wages_payable + Post_ski_fill_up + depreciation_total;

    daily_price = ((expense_per_entire_trip * profit_needs) / days) / number_of_skis;

    cout &lt;&lt; " The total cost of depreciation is: " &lt;&lt; depreciation_total &lt;&lt; endl
         &lt;&lt; "The total cost for Travel Fuel is: " &lt;&lt; Travel_fuel &lt;&lt; endl
         &lt;&lt; "The total cost for Wages payable is: " &lt;&lt; Wages_payable &lt;&lt; endl
         &lt;&lt; "The total cost for Post Ski fill up is: " &lt;&lt; Post_ski_fill_up &lt;&lt; endl
         &lt;&lt; "The total cost for vehicle depreciation is: " &lt;&lt; Vehicle_depreciation &lt;&lt; endl;

    cout &lt;&lt; "The entire expense for the trip is: " &lt;&lt; expense_per_entire_trip &lt;&lt; endl
         &lt;&lt; "The daily price per ski is: " &lt;&lt; daily_price &lt;&lt; endl;

    cout &lt;&lt; "Thank you Find your Wave!";
    return 0;
}