Ask Question

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

+4
Answers (1)
  1. 1 November, 07:15
    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?
Find 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 the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers