|
course.wilkes.edu/CS125Labs |
||||||
Hands On C++: Project 1
Objectives
1. Practice designing a program.
IntroductionYour 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
Projects1.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 * radius^2. 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 * radius^2 * 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 * radius^2. volume = 4/3 * p * radius^3. Don't forget to clean up your directory when you are all finished...
|
Home Membership
|
|||||
|
Last update: Wednesday, January 31, 2001 at 2:47:30 PM. |
||||||