logo CodeStepByStep logo

ParameterMysterySection1

Language/Type: Java parameters

The following console program uses parameters and produces three lines of output. What are they?

public class ParameterMysterySection1 {
    public static void main(String[] args) {
        int a = 4;
        int b = 7;
        int c = -2;

        m(a, b, c);
        m(c, 3, a);
        m(a + b, b + c, c + a);
    }

    public static void m(int c, int a, int b) {
        System.out.println(b + " + " + c + " = " + a);
    }
}
line 1
line 2
line 3

You must log in before you can solve this problem.

Log In

Need help?

Stuck on an exercise? Contact your TA or instructor.

If something seems wrong with our site, please

Is there a problem? Contact us.