Ask Question
15 March, 09:15

Write a local function named maxvalue that returns the maximum of two inputs numa and numb.

+1
Answers (1)
  1. 15 March, 10:27
    0
    Here is a function in Delphi:

    function maxvalue (numa, numb: integer) : integer;

    var

    biggest: integer;

    begin

    if numa > = numb then

    biggest : = numa;

    else

    biggest : = numb;

    end;

    Return biggest;

    end;
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Write a local function named maxvalue that returns the maximum of two inputs numa and numb. ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers