Ask Question
5 May, 22:49

Write the definition of a method min that has two int parameters and returns the smaller.

+1
Answers (1)
  1. 6 May, 01:01
    0
    public class ExampleMinNumber {

    public static void main (String[] args) {

    int a = 11;

    int b = 6;

    int c = minFunction (a, b);

    System. out. println ("Minimum Value = " + c);

    }

    / * * returns the minimum of two numbers * /

    public static int minFunction (int n1, int n2) {

    int min;

    if (n1 > n2)

    min = n2;

    else

    min = n1;

    return min;

    }

    }

    java 8.0
Know the Answer?
Not Sure About the Answer?
Get an answer to your question ✅ “Write the definition of a method min that has two int parameters and returns the smaller. ...” in 📙 Computers & Technology if there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers