Question
Asked by:
$10.00 What will the formula psuedocode program display?
- From Computer-Science: Programming-Methods
- Closed, but you can still post tutorials
- Due on Jan. 17, 2009
- Asked on Jan 14, 2009 at 10:55:04PM
Q:What will the formula psuedocode program display?
Module main()
Declare Integer x = 1
Declare Real y = 3.4
Display x, , y
Call changeUs (x, y)
Display x, , y)
End Module
Module changeUs(Integer Ref a, Real Ref b)
{
Set a = 0
Set b = 0.0
Display a, , b
}



