loops

Do-while loop in Java programming language

Do-while loop in Java programming language

Loops in Java

In this article, we will discuss the Do-while loop in the Java programming language

Loops are an important concept in java language. It is used to multiple circulations(more than one)

in the Java, three types of basic loops available in Java

 

  • for loop
  • while loop
  • Do-while loop

Do while loop in Java

the do-while loop is like to a while loop  but it is guaranteed to execute at least one time before the test expression is checked

It contains two-part

  • Do part – the start of the loop
  • while part – end of the loop

At the do-while loop, Boolean expression includes at while part – end of the loop, so  the statements in the loop execute once before the boolean is checked

When control of loop checks boolean expression in the while part, if the boolean expression is true, the loop goes to do part and executed again. , this process continues until the boolean is false

Syntex

this is the syntax of the loop

do{
// statement(s);
// increments

} while (check Boolean_expression);





flow diagram of the loop

 

Example programs


class DoWhileDemo{
public static void main(String args[]){
int x=1;
do{
System.out.println(“x is – “+x);
x++;

}while (x<11); //condition is true

}

}

When the above code is executed, it produces the following result



The following program is the same but another situation – the Test expression is false

class DoWhileDemo{
public static void main(String args[]){
int x=1;
do{
System.out.println(“x is – “+x);
x++;

}while (x>11); //condition is false

}
}

When the above code is executed, it produces the following result

do-while loop is guaranteed to execute at least one time before checking the test expression

 

Program 3

Calculate the sum of natural numbers using do-while loop

import java.util.Scanner;
class Sum_Of_Num1{
public static void main(String args[]){
  int sum=0;
Scanner scan=new Scanner(System.in); //create a scanner object for input
System.out.print("Enter the number as you wish: ");
int num=scan.nextInt();//get input from the user for num
int i=1;
do{
  sum+=i;//sum=sum+i;
  i++;
}while(i<=num);
System.out.println("the sum of 1 to "+num+"is: "+sum);

}


}

When the above code is executed, it produces the following result

Enter the number as you wish:100
the sum of 1 to 100 is:5050

 

 

Nested do while loop in Java

Example
class NestedDowhileloop

 

class dowhile{
public static void main(String args[]){
int row=1,coloum=1;
int x;
do
{
x=4;
do{
System.out.print(“”);
x–;
}while(x>=row);
coloum=1;
do{
System.out.print(row+” “);
coloum++;
} while(coloum<=row);
System.out.println(” “);
row++;
}while(row<=5);
}
}

 

When the above code is executed, it produces the following result

 

Karmehavannan

Recent Posts

Using function or method to Write temperature conversion : Fahrenheit into Celsius

Using Function or Method to Write to temperature conversion: Fahrenheit into Celsius In this article,…

11 months ago

Function or method:temperature conversion from Fahrenheit into Celsius – Entered by user

Function or method of temperature conversion from Fahrenheit into Celsius In this article, we will…

11 months ago

Write temperature conversion program: Fahrenheit into Celsius

Write temperature conversion program: from Fahrenheit to Celsius In this article, we will discuss the…

11 months ago

How to write a program to convert Fahrenheit into Celsius

How to write a program to convert Fahrenheit into Celsius In this article, we will…

11 months ago

Function/method to convert Celsius into Fahrenheit -Entered by user

Function/method to convert Celsius into Fahrenheit -Entered by user In this article, we will discuss…

11 months ago

Temperature conversion: Celsius into Fahrenheit using function or method

Temperature conversion: Celsius into Fahrenheit using a function or method In this article, we will…

11 months ago

This website uses cookies.