+ 1
Anyone else can help me to print this pattern?
Please help me to print this pattern using loops e e de ed cde edc bcde edcb abcdedcba
3 Respuestas
0
I would try this:
for (int i = 0; i <= row; i++){
for (int j = 0; j <= length of the row; j++){
print the line; //j = 0 first line; j = 1 second line...
}
System.out.println (); //start a new line
}
+ 1
Please share your attempt first