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 7753885
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T12:10:00+00:00 2026-06-01T12:10:00+00:00

I have 2D array but if I change x coordinate, everytime I get wrong

  • 0

I have 2D array but if I change x coordinate, everytime I get wrong result.

  int[][] arr = {{0, 2, 0, 0, 1},{0, 2, 0, 0, 1},{0, 2, 0, 0, 1},{0, 2, 0, 0, 1},{0, 2, 0, 0, 1}};
int now, previous;

   for (int i = 1; i < 5; i++) {
    for (int j = 0; j < 5; j++) {
        now = arr[i][j];
        previous = arr[i-1][j];
        }
   }

The result of variable now is 0, 2, 0, 0, 1… Why I want to have only 2, 0, 0, 1
If I change i coordinate of variable for Example i = 1 the output is still 0, 2, 0, 0, 1…
Do you know where is problem?
Thanks

  • 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-06-01T12:10:01+00:00Added an answer on June 1, 2026 at 12:10 pm

    because i corresponds to the outer array in your example. what you have will print 0, 2, 0, 0, 1 four times. I gather what you want is to show 2, 0, 0, 1 five times… for that you should be doing

    for (int i = 0; i < 5; i++) {
     for (int j = 1; j < 5; j++) {
         now = arr[i][j];
         previous = arr[i-1][j];
         }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an array but something goes wrong with it, here is my code
I have an array of objects[] but I want to convert them to an
Right now, I have an array of Point objects and I want to make
I have an array of address but some of them are not valid they
I’m working on a multi dimensions array but i have a problem Imagine I
I have an array of double pointers, but every time I try do print
I have an array of values which is almost, but not quite sorted, with
I'm not sure how difficult this but I have an array and would like
I know the question sounds silly, but consider this: I have an array of
If I have a variant array which holds nothing but simple types, and possible

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.