Design a module named timesTen. The module should accept an Integer argument. When the module is called, it should display the product of its argument multiplied time 10.
Perito
Nov 17, 2009, 09:29 PM
Sounds simple enough. What language are you programming in?
In Pascal, you might do something like this:
Sub timesTen(ref Argument: integer)
begin
return Argument * 10;
end;