When the RETURN statement in the method is executed, the program control flow immediately returns to the point after the method is called. If there is an expression after return, the value of the expression will also return to the calling environment. It is also possible to enclose the expression by parentheses. Falling off the end is only allowed if the return type is Void. Min2.java
// min2.java: return expression in a method static void main (string [] args) {INT j = 78, k = 3 * 30, m; system.out.println ("Minimum of Two Integers Test : "); M = min (j, k); system.out.println (" THE minimum of: " J ", " K " IS " m);} Static Int Min (int A, int b) {IF (a