Search code examples
algorithmpseudocode

Algorithm, pseudo code


I tried several times how to write a algorithm and a pseudo code for a program of finding the largest value among 3 user input integers? . I couldn't make it properly. Can i be helped?


Solution

  • Pseudocode for maximum of 3 integers-

    print max(max(first_integer,second_integer),third_integer)