Explain the difference between while and do ........ while statements with suitable examples.
Answers
Answered by
0
class j
{
public static void main [String args()]
{
int a;
a=1;
do
{
a++
System.out.println(a);
}
while(a<=10)
}
}
Similar questions