FIT   100
© Copyright University of Washington 1999-2000
Anatomy Of A Procedure
vProcedures have the following features
oName, a brief description of operation performed
oParameters, variables used for passing input in, output out
oBody, the statements that perform the desired computation
vThe VB6 procedure to convert Celsius to Fahrenheit
oName is c2f  (Snyder book uses convertC2F … shortened to fit on slides …)
oParameters: input is c; output is f
oBody is standard conversion equation
oBlue -- key words and and symbols that are required
Private Sub c2f (c As Integer, f As Double)
f = 9 * c / 5 + 32
End Sub