Hands On C++: Project 1


Objectives

1. Practice designing a program.
2. Practice implementing a program design in C++.
3. Practice testing a program.

Introduction

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 your program by specifying its behavior, identifying the objects and operations it needs to solve the problem, and then organizing the objects and operations into an algorithm. Then code your design in C++ using stepwise translation. Finally, test your program thoroughly.

In the descriptions below (and elsewhere in this manual), we use the notation x^y to denote x raised to the power of y, even though C++ does not have an exponentiation operator.

Projects

1.1. Write a program to find the circumference and area of any circle. The formulas for these quantities are as follows:
   circumference = 2 * p * radius.
   area = p * radius2.

1.2. Write a program to find the side surface area and volume of any regular cylinder. The formulas for these quantities are as follows:

   sideSurfaceArea = 2 * p * radius * height.
   volume = p * radius2 * height.

1.3. Write a program to find the circumference and area of any regular ellipse. The formulas for these quantities are as follows:

   circumference = 2 * p * the square root of (((height/2)2) + (width/2)2)/2).
   area = p * height/2 * width/2.

1.4. Write a program to find the surface area and volume of any sphere. The formulas for these quantities are as follows:

   surface area = 4 * p * radius2.
   volume = 4/3 * p * radius3.

Turn In: A hard copy of this grade sheet, attached to hard copies of

  1. your design (behavior, objects, operations, algorithm);
  2. your source program; and
  3. the output from three different executions in which you test the correctness of your program (using script).

Don't forget to clean up your directory when you are all finished...


Back to the Lab Exercise

Back to This Lab's Home Page


Copyright 1998 by Joel C. Adams. All rights reserved.