logo Practice-It logo

BJP4 Self-Check 3.5: Weird

Language/Type: Java method basics parameter mystery
Author: Roy McElmurry (on 2016/09/08)

What output is produced by the following program?

public class Weird {
    public static void main(String[] args) {
        int number = 8;
        halfTheFun(11);
        halfTheFun(2 - 3 + 2 * 8);
        halfTheFun(number);
        System.out.println("number = " + number);
    }   
    
    public static void halfTheFun(int number) {
        number = number / 2;
        for (int count = 1; count <= number; count++) {
            System.out.print(count + " ");
        }
        System.out.println();
    }
}

You must log in before you can solve this problem.


Log In

If you do not understand how to solve a problem or why your solution doesn't work, please contact your TA or instructor.
If something seems wrong with the site (errors, slow performance, incorrect problems/tests, etc.), please

Is there a problem? Contact a site administrator.