Write a method that takes arguments and returns a value
Use parameter variables in a method body
Use relational operators to construct an expression
Use an if statement to get the computer to make a decision
Problem Description and Given Info
Write (define) a public static method named getLargest, that takes two arguments (all arguments will be ints). When this method is called, it should return (as an int) the largest of the two arguments passed to it.
Examples:
getLargest(0, 0) will return 0
getLargest(2, 1,) will return 2
getLargest(13, 100) will return 100
Notes:
You may wish to write some additional code, in the main method, to test your method.