Exercise: Determine Maximum of Two Numbers

  1. Write a program that

    • Takes two numbers from the commandline. Remember: commandline arguments can only be strings, so those have to be converted to numbers.

    • Determines the maximum of the numbers.

    • Outputs the maximum.