Computer Science, asked by jillujose, 7 months ago

Using, nested 'while' print the following:
A
А С
А С Е​

Answers

Answered by Imblank
1

Answer:

i = 0,j=0;

while(i<3){

while(j<3){

print(A+j)

j=j+2

}

print("\n");

}

Similar questions
Math, 3 months ago