Sample Flowchart and Pseudo Code. By Professor Floyd Winters 04/14/05, 11/27/06, 08/24/2011
This is a very short
sample. Your First intro VB Flowchart probably should be almost twice as long.
Click here to view Creating a Flowchart in Microsoft Word (5:20 min. YouTube video).
|
Flowchart |
Sample short |
Pseudo Code |
|
Terminator |
|
Begin Wage Program |
|
Input |
Enter Employee Hours |
|
|
Decision (IF) |
Check if Hours are Valid (Under 60 Hours) IF No then Reenter IF Yes then Enter Rate |
|
|
Input
|
Enter Employee Pay Rate (add: Check if Rate is Valid) |
|
|
Process |
Calculate Employee Pay: Multiply Hours times Rate |
|
|
Output – Monitor |
Display to Monitor (add: Printout Employee Pay)
|
|
|
Output – Disk
|
Save to Disk |
|
|
Decision |
Are there More records? If Yes – Enter new Hours If No – End the program |
|
|
Terminator |
End Wage Program (Note: one Entrance, one Exit) |