//Programmer: Bo Bayles  Date: 19 October 2004
//File: box.h            Class: CS54 C
//Purpose: This is a head file that defines the struct and functions
//  for the Lab 9 assignment.

#ifndef BOX_H
#define BOX_H

#include <iostream>
using namespace std;

struct box
{
  int length;
  int width;
  int height;
};
//This struct defines the box, which has properties of length, width,
//  and height.

float boxVolume(box);
//Declare the boxVolume function, which multiplies length, width,
//  and height, and returns that float.

void displayBox(box);
//Declare the displayBox function, which just outputs the dimensions.

float boxSurfaceArea(box);
//Declare the the boxSurfaceArea function, which calculates surface area
//  and returns that float.

void displaySummary(int, float, float, box);
//Dclare the displaySummary function, which just outputs the results of
//  the calculations.

#endif


