Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6973685
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T17:08:23+00:00 2026-05-27T17:08:23+00:00

is there a way to place a word in a 2d array in a

  • 0

is there a way to place a word in a 2d array in a specific position? For example,i want to give the word, choose vertical or horizontal and the position ((3,3) or (3,4) or (5,6) etc) and the word will be placed in that position.This is my code for the array…

char [][] Board = new char [16][16];


    for (int i = 1; i<Board.length; i++) {
        if (i != 1) {
            System.out.println("\t");
            System.out.print(i-1);
        }

        for (int j = 1; j <Board.length; j++) {
            if ((j == 8 && i == 8) ||(j ==9 && i == 9) ||(j == 10 && i == 10) ||(j == 2        && i == 2) )
            {
                Board[i][j] = '*';
                System.out.print(Board[i][j]);
            }
            else {
                if (i == 1) {
                    System.out.print("\t");
                    System.out.print(j-1);
                }
                else {
                   Board[i][j] = '_';
                    System.out.print("\t");
                    System.out.print(""+Board[i][j]);
}

}

(the * means that the word cant be placed there)

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T17:08:24+00:00Added an answer on May 27, 2026 at 5:08 pm

    Is there a way to place a word in a 2d array in a specific position?

    Yes you can implement that. The pseudo-code is something like this:

    public void placeWordHorizontally(char[][] board, String word, int x, int y) {
        for (int i = 0; i < word.length(); i++) {
            if (y + i >= board[x].length) {
                 // fail ... edge of board
            } else if (board[x][y + i]) == '*') {
                 // fail ... blocked.
            } else {
                 board[x][y + i] = word.charAt(i);
            }
        }
    }
    

    and to do the vertical case you add i etcetera to the x position.

    I won’t give you the exact code because you’ll learn more if you fill in the details yourself.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way to place a watch on variable and only have Visual
Is there any way to place an image inside of a text field with
Is there a simple way to place a detail disclosure icon on a UIButton?
Is there any way to create a word document where the cursor is invisible
Is there any way to place a row of buttons or link buttons next
Is there a way to set the minimum number of decimal places that a
Is there a straightforward way of determining the number of decimal places in a(n)
Which way is better for removing float decimals places or is there a more
Is there way in next piece of code to only get the first record?
is there way thats i can preselect an item when the page loads or

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.