
Hint: If we do (), then each position is on a new line. Inside our function, we need to print out each position on our board. We don’t need to return anything since the function is simply printing out the board. In order for our function to draw the board and print it out, do we need to pass a parameter into the function? Do we need to return anything? Hint: We need to pass in the board 2D array in order for the function to be able to print it. Step 3: Create a function that draws the board and prints it out like a 3x3 square. We store their input in a String called p1.ĭo the same for p2. Next, we print out a message asking the user to type in their name using (). Step 2: Ask the users for their names.įirst, we import the Scanner to help us get input from the user, by adding import to the top of our program.

Inside both for loops, we can set board equal to a dash. Hint: We can use a nested for loop to iterate through each position on our board. Now we have to fill our board with dashes.
Array programs in bluej code#
Hint: We can use the following line of code to make a 3x3 array of chars: char board = new char We need to make a 2D array of characters, which can be x, o, or. How do we do each of these steps? Step 1: Create a 3x3 array to represent the tic tac toe board and fill it with dashes.

Here, we will get the marks of maths, physics, chemistry, and computer from the student. (y+" is a not a leap year") Įxample 2: This example demonstrates the use of all logical operators. Using logical AND, OR and NOT Operator Creating scanner object and Declaring a variable Get a year from the user and check if it is a leap year or not. The statement below demonstrates the syntax of " &" operator.Įxample using Logical AND, Logical OR and Logical NOT operators :Įxample 1: This example demonstrates the use of all logical operators. However, It checks the second condition only if the first one is true. In other words, logical & operator will not check the second condition if the first condition is false. This operator returns true if both the conditions are true. In Java, the Logical AND operator " &" is a binary operator that operates on conditional statements on either side. You are not eligible for the next level") Ĭongratulations. Creating Scanner object to get input from user To qualify for the next level, the student should have at least 60 marks in one subject.

Thereafter, we will check if the student qualifies for next level. result = first_condition || second_conditionĮxample : In this example, we will get marks of maths, science and english from the student. The statement below demonstrates syntax of the " ||" operator. ALSO READ: Java Regular Expression (RegEx) Explained
