logo CodeStepByStep logo

ParameterMysteryExam3

Language/Type: C# parameters return

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

public class ParameterMysteryExam3
{
    public static void Main()
    {
        int a = 5;
        int b = 1;
        int c = 3;
        int three = a;
        int one = b + 1;

        Axiom(a, b, c);
        Axiom(c, three, 10);
        three = Axiom(b + c, one + three, a + one);
        a++;
        b = 0;
        a = Axiom(three, 2, one);
    }

    public static int Axiom(int c, int b, int a)
    {
        Console.WriteLine(a + " + " + c + " = " + b);
        return a + b;
    }
}
line 1
line 2
line 3
line 4

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.