I need help with writing up the Java Code.

I need help writing a java code help?

  • i need a java code using only 2 nested for loops to display.. 1 1 2 1 2 4 1 2 4 8 1 2 4 8 16 1 2 4 8 16 32 1 2 4 8 16 32 64 1 2 4 8 16 32 64 128 1 2 4 8 16 32 64 1 2 4 8 16 32 n 1 2 4 8 16 1 2 4 8 1 2 4 1 2 1

  • Answer:

    This will do the job: for(int i = 1; i < 17; i++) { int m = (i < 9) ? i : 16 - i; for(int j = 1, k = 1; j <= m; j++, k *= 2) { System.out.print(k + " "); } System.out.println(""); }

reddrago... at Yahoo! Answers Visit the source

Was this solution helpful to you?

Related Q & A:

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.