Hands On C++: Project 4


The Projects

Your instructor will assign you one of the problems below. To solve your problem, write a program that reads the necessary information to compute and output the indicated values, as efficiently as possible. Following the pattern in the lab exercise, first, design using OCD; then code your design in C++ using stepwise translation; finally, test your program thoroughly.

Project #4.1: Work in a group with other students to complete the metric library started in the exercise. Assign a different person to work on each of the following groups of functions:

Lengths Weights
Inches to centimeters
(1 inch = 2.54 cm)
Yards to meters
(1 yard = 0.9144 m)
Miles to kilometers
(1 mile = 1.609344 km)
Ounces to grams
(1 ounce = 28.349523 g)
Pounds to kilograms
(1 pound = 0.453592 kg)
Tons to kilograms
(1 ton = 907.18474 kg)
Volumes Areas
Pints to liters
(1 pint = 0.473163 l)
Quarts to liters
(1 quart = 0.946326 l)
Gallons to liters
(1 gallon = 3.785306 l)
Square inches to square millimeters
(1 sq. in. = 645.16 sq.mm)
Square feet to square meters
(1 sq. foot = 0.09290304 sq.m)
Acres to square meters
(1 Acre = 4.04686x10^3 sq.m).

Each person is responsible for writing the necessary function prototypes, definitions, and documentation specifications. Each person should write up an OCD design for at least one of their functions.

Each group, though, should submit exactly one library, bringing together all of the prototypes, definitions, and documentations (in three separate files, of course).

Then one of the people in the group (under the close scrutiny of the other group members) should extend the driver from the lab exercise to test all of the functions with one input value.

The documentation file should indicate which group member was responsible for which functions. Only that group member will be penalized for any errors in that set of functions, or its documentation.

Turn In

Turn the following things:

  1. This grade sheet.
  2. Your OCD.
  3. Your source program.
  4. The output from an execution of your program.


Lab Home Page | Lab Exercise
© 2003 by Prentice Hall. All rights reserved.
Report all errors to Jeremy D. Frens.