Answer to Question #315852 in Java | JSP | JSF for Jay

Question #315852

Using nested loops, write code to produce the following output. (8 marks)


NB: Use only two loops.


1 2 3 4 5 6 7 8


1 2 3 4 5 6 7


1 2 3 4 5 6


1 2 3 4 5


1 2 3 4


1 2 3


1 2


1

1
Expert's answer
2022-03-22T09:07:24-0400
public class Main {
    public static void main(String[] args) {
        for(int i=8;i>=0;i--){
            for(int j=1;j<=i;j++){
              System.out.print(j+" ");     
            }
            System.out.println("");     
        }
        
    }
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS