Physics, asked by partap8759, 10 months ago

Explain the difference between while and do ........ while statements with suitable examples.

Answers

Answered by sparsh6921
0

class j

{

public static void main [String args()]

{

int a;

a=1;

do

{

a++

System.out.println(a);

}

while(a<=10)

}

}

Similar questions