84.9k views
3 votes
Write the definition of a method printlarger, which has two int parameters and returns nothing. the method prints the larger value of the two parameters to standard output on a single line by itself.

User Fallup
by
8.9k points

1 Answer

3 votes
public class ExampleMaxNumber {

public static void main(String[] args) {

int a = 11;
int b = 6;
int c = maxFunction(a, b);
System.out.println("Maximum Value = " + c);

}
/** returns the maximum of two numbers */

public static int maxFunction(int n1, int n2) {
int max;
if (n1 > n2)
max = n1;
else max = n2;
return max;
}
}
User Thomas Segato
by
7.8k points