Question: Remember that you will be submitting 3 files: Source code file Output file Design work file (your design work must contain your top-down design and
Remember that you will be submitting 3 files:
Source code file
Output file
Design work file (your design work must contain your top-down design and your algorithm).
After you have completed you design work, start your program by loading in a copy of your program template into the C++ editor. (you load a copy by opening the template and then saving the newly opened template file under an appropriate name: an appropriate name for this program work be hillside)
The template contains elements that will be used in every program.
Once you've loaded your template, you can add the code needed in your specific program solution and then continue with the steps in program development.
Bergen Community College Computer Science CIS-165 Program Design Write the top-down chart and algorithm (use pseudocode) for each of the following 1. Calculate the sum and the average of three scores that will be input by the user. Outputs will be all inputs and calculated data 2. Using the value of radius, calculate the area and the circumference of a circle. Output will be all inputs and calculated data. Note: area is r2and circumference is 2r ( represents pi which is approximately 3.14159 and r represents radius) Note: if you cannot use drawing tools to create the top down chart showing the levels that you would need in your design, follow the example below (problem: given 2 input values, calculate the product and the sum of these values) Top Down Chart Level 0 Calc_Prod and Sunm Level 1 Get_Input Calc_product Calc_Sum Gen_Report Example: Acceptable alternative to drawing a Top-Down Chart Level 0: Calc Prod and Sum Level 1: (tasks of Level 0) 1. Get Input 2. Calc_product 3. CalcSum 4. Gen Report
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
