Answer:
public static void minMax(int num1, int num2, int num3, int smallest, int largest){
}
Step-by-step explanation:
- The function declaration above is in Java programming Language
- The access modifier (public) is optional it could be private as well
- static because it is found within same class as the main method
- void because it will return no value
- The parenthesis contain the parameters as specified by the question