We will learn about the for keyword in Java programming language
In Java programming language, the for keyword is used in the for loop. The for keyword specifies a loop that executes a block of statements repeatedly until given condition (boolean expression) is true. The for loop test expression similar to if condition(based on boolean expression)
In Java language, There are two type of for loop
The syntax of the for (classic for loop)
for(initialization; boolean Expression; increment or decrement){ statement(s) //block of statements }
int i;
for(i=0; i>=max; i++){ //boolean expression System.out.println(i); // display statements }
for keyword is used for loop, it executes a block of statements until the boolean expression returns true. It gets terminated when the boolean expression returns false.
The real example to for keyword in for loop in java
class ForKeywordinJava{ public static void main(String args[]){ for(int i=1; i<10; i++){ System.out.println("The value of i is :"+i); } } }
When the above code is compiled and executed, it will produce the following results
The value of i is :1 The value of i is :2 The value of i is :3 The value of i is :4 The value of i is :5 The value of i is :6 The value of i is :7 The value of i is :8 The value of i is :9
There are other Java language keywords that are similar to this keyword
Suggested for you
C# inverted full pyramid star pattern In this article, we will discuss the concept of…
C# Full Pyramid star pattern program In this article, we will discuss the concept of…
Program to count vowels, consonants, words, characters and space in Java In this article, we…
How to print multiplication table using Array in C++ language In this post, we will…
C Program to multiplication table using Array In this tutorial , we will discuss about…
Java program to check odd or even using recursion In this tutorial, we discuss a…