Computer Science, asked by chahakkk, 2 months ago

convert for loop into do while loop​

Attachments:

Answers

Answered by aleenababu2910
1

Answer:

int i=0,j=0;

do

{

i++;

j++

System.out.println(i*j);

}while(i<=10);

Similar questions