Ask Question

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

+4
Answers (1)
  1. 21 January, 03:23
    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?
Find 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 the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers