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
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("");
}
}
}
Comments
Leave a comment