My question is a translation of a pseudocode that calls for 2 numbers, add them & show the 2 numbers & the sum, to a working visual basic solution with multiple procedures?
Function ComputeSum(parameters: field1, field2)
Pass In: first number, second number
Initialize total to zero
Set total to first number add second number
Return(total)
Endfunction
Function displayValues(parameters: field1, field2, field3)
Pass In: first number, second number, result
Print sum of
Print first number
Print second number
Print is equal to
Print result
Endfunction
Function main
Input first number
Input second number
Set result equal to Call: ComputeSum(arguments: first number, second number)
Call: displayValues(arguments: first number, second number, result)