Texts: Need in Java
Write (define) a public static method named getSmallest, that takes three arguments (all arguments will be ints). When this method is called, it should return (as an int) the smallest of the three arguments passed to it.
Examples:
getSmallest(0, 0) will return 0
getSmallest(2, 1, 3) will return 1
getSmallest(100, 137) will return 7