PROBLEM NAME: THE STUDENT AVERAGE PROGRAMPROBLEM STATEMENT AND REQUIREMENTSPlan and design the algorithm logic of the “Student Average” program using...
NVCC CSC 110ͽ INTRO TO COMPUTING ͽ FALL 2012
ASSIGNMENT TEMPLATE
INTO TO PROGRAMMING II: ALGORITHM LOGIC AND SYSTEMATIC ANALYSIS
Due Date:
Name(s): Section #:
EX 4.1: IPO Analysis
1. IPO Chart: Brainstorming and Analysis Tool
|
Input (Data) |
Process (Algorithm) |
Output (Information/results) |
|
|
|
|
|
|
|
|
|
|
|
|
2. PSEUDOCODE: Planning and Structuring Tool
Keywords: (be consistent when you use keywords)
Declare, Display, Get, and Set
BEGIN
//Declare and initialize variables
Declare [variable type] [variable identifier] = [default value]
…
…
…
//Get the input or data
Display “prompt”
Get [variable identifier]
…
…
…
//Manipulate the data or perform certain calculations
Set [variable identifier] = [expression]
//Display the results
Display “Pre-text” + [variable identifier]
…
…
…
END
3. Flowchart: Design and Testing and Debugging Tool
[Insert the Raptor flowchart here]
OPI
I
PI
1 | Page