Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

6.Develop program to demonstrate use of ‘While’, ‘do-while’.

public class DoWhile{


public static void main (String args[]){
int i=0;
do{
System.out.println(" Khairnar Chetan");
i++;
}
while(i<=10);
}
}
Output :-public class While{
public static void main (String args[]){

int i=0;

while(i<10)
{

System.out.println("Khairnar Chetan");
i++;
}
}
}
*********************************************************

You might also like