Ask Question

Write a little man program that accepts three values as input and produces the largest of the three as output.

+2
Answers (1)
  1. 23 September, 20:42
    0
    Required: program to return the largest of three numbers.

    pseudocode

    input parameters, int A, B, C;

    int T; / / temporary storage

    if (A>B) T=A;

    else T=B;

    if (T>C) print (T);

    else print (C);
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Write a little man program that accepts three values as input and produces the largest of the three as output. ...” 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