PSEUDOCODE - PowerPoint PPT Presentation

About This Presentation
Title:

PSEUDOCODE

Description:

Title: OUTCOME 1 FLOW CHART & PSEUDOCODE Author: IMAGE Last modified by: UniKL BMI 1 Created Date: 8/5/2003 1:00:59 AM Document presentation format – PowerPoint PPT presentation

Number of Views:129
Avg rating:3.0/5.0
Slides: 12
Provided by: IMAG93
Category:

less

Transcript and Presenter's Notes

Title: PSEUDOCODE


1
PSEUDOCODE FLOW CHART
2
HOW TO PLAN YOUR PROGRAM
  • PROGRAM CAN BE REPRESENT USING
  • PSEUDOCODE
  • FLOW CHART
  • NS (NASSI SCHIDERMAN) CHART

3
1. PSEUDOCODE
What is THAT ?? _at_
  • Pseudocode consists of short, English phrases
    used to explain specific tasks within a program's
    algorithm (The algorithm is a set of precise
    instructions specifying how to carry out a
    specific task.
  • Pseudocode should not include keywords in any
    specific computer languages. It should be written
    as a list of consecutive phrases.
  • You should not use flowcharting symbols but you
    can draw arrows to show looping processes.
  • Indentation can be used to show the logic in
    pseudocode as well.
  • One programmer should be able to take another
    programmer's pseudocode and generate a program
    based on that pseudocode.

4
Why PSEUDOCODE is necessary?
The programming process is a complicated one. You
must first understand the program specifications,
then organize your thoughts and create the
program. You must break the main tasks that must
be accomplished into smaller ones in order to be
able to eventually write fully developed code.
Writing pseudocode WILL save you time later
during the construction testing phase of a
program's development.
5
How to write PSEUDOCODE?
  • Make a list of the main tasks that must be
    accomplished on a piece of scratch paper.
  • Then, focus on each of those tasks, try to break
    each main task down into very small tasks that
    can each be explained with a short phrase. There
    may eventually be a one-to-one correlation
    between the lines of pseudocode and the lines of
    the code that you write after you have finished
    pseudocoding.

6
2. FLOW CHART
7
Example 1 Program Specifications
Write a program that obtains two integer numbers
from the user. It will print out the sum of those
numbers.
8
PSEUDOCODE
Prompt the user to enter the first integerObtain
user's first integer inputPrompt the user to
enter a second integerObtain user's second
integer inputAdd first integer and second
integerStore the result in another
variableDisplay an output prompt that explains
the answer as the sumDisplay the result
9
FLOW CHART
10
Example 2
// example of if statements include
ltstdio.hgt void main() int guess_input   print
f( Please enter a whole number\n) scanf("d",
guess_input) if (guess_input1) printf(
Right number !\n) printf( "Well Done.\n
)
11
FLOW CHART
Write a Comment
User Comments (0)
About PowerShow.com