Flowchart-Copy-1
Flowchart-Copy-1
• Maintenance - involves
repairing the bugs that are
spotted by program users and
making alterations of the
program, often in response to
user request for improved
operation or additional program
features.
COMPUTER PROGRAMMING JAVA
5. Put the program into production.
• Documentation - Contains
details at all stages of the
program development cycle.
• A graphical representation of
algorithm.
• A visual representation of the
sequence of steps.
Decision –
Process – shows
shows how a process is when the
being done. decision
needs to
be made.
Input/Output –
Arrow or Direction flow –
identifies
what to input indicates the direction
and signifies and order of the process.
the output.
Off-page
On-page
Connector –
Connector –
used to connect
used to
the flow to
connect the
another page.
flow on the
same page.
Sequence Structure
Decision Structure
Repetition Structure
It is a combination of the
logic operations following
each other. That means
the logic flow is continuing
from one process to
another in sequence.
COMPUTER PROGRAMMING JAVA
Sequence Structure
Problem3:
Num = 0
continuously enter
one whole number A Enter
until user entered 3, if num
number. False
Print
num
A
COMPUTER PROGRAMMING JAVA