Computer Science, asked by sakshisingh116, 6 months ago

for( int x=1; x<=10; x++)
{
system. out. println( I) ;
}
convert the following loop statement in do while loop​

Answers

Answered by adiabloplayer27
1

Answer:

do {

int x=1;

System.out.println(I);

x++;

} while(x<=10);

Similar questions