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.
![]() |
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.
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;
I am using Python
All times are GMT -7. The time now is 12:22 AM. |