Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

E.g.:

for (int i = 0; i < 3; i++) {
  for (int j = 0; j < 4; j++) {
    for (int k = 0; k < 5; k++) {
      ...
    }
  }
}

That's 3 * 4 * 5 = 60 times executing the innerst code. Now I want to use the values of the indices i, j, and k to generate all numbers from 0 to 59 (not necessarily sorted).

share|improve this question

1 Answer

up vote 0 down vote accepted

Ok, got it.

Make k count 1, j count k's limit, i count j's limit times k's limit.

for (int i = 0; i < 3; i++) {
  for (int j = 0; j < 4; j++) {
    for (int k = 0; k < 5; k++) {
      int c = k * 1 + j * (5) + i * (5 * 4);
      System.out.println(c);
    }
  }
}

Output: 0..59.

share|improve this answer
This looks incredibly like a homework problem :) – Moe Matar Jul 7 '11 at 0:30
No homework. It's 2:30 a.m. and my brain starts failing. :) – htorque Jul 7 '11 at 0:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.