You are on page 1of 1

// Neel Patel//10/25/19//This is Lab 3: Shipping package in this program we are

going to use refernce variables, functions and overloaded functions.#include


<iostream> // Library for i/o#include <string> // Library for string
functionality#include <iomanip> // Library to format output using coutusing
namespace std; // Always use standard i/o// Declare function prototypesvoid
welcome();void getInfo(string&, string&, string&);int selectPackageShape();void
getDimensions(double&, double&, double&);double calcCubicInches(double, double,
double);void getDimensions(double&, double&);double calcCubicInches(double,
double);int selectDeliveryType();double calcTotalPrice(int, double);void
displayEstimate(string, string, string, double, int, double);void goodBye();

You might also like