Ask Question
15 August, 17:37

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

+4
Answers (1)
  1. 15 August, 21:09
    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 and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers