types of loop in java
प्रोग्रामिंग की भाषा में Looping एक ऐसा feature है जो instructions/functions के एक सेट को बार-बार execution करने की सुविधा प्रदान करता है |
एक ही statement को बार बार दोहराना ही Looping होता है |
Java Loops
- While – Loop
- Do – while Loop
- For – Loop
While Loop
- while एक entry controlled loop है |
- while loop में जब तक condition true है तब तक loop repeat होता रहता है
- अगर condition false होता है तब loop exit हो जाता है |
- while loop में initial value को loop के बहार देते है। और condition को loop के अंदर डिक्लेअर करते है |
- while loop में सबसे पहले condition check होता है बाद में statement execute होता है |
- लूप स्टेटमेंट्स के अंत में कोई semicolon नहीं है।
the syntax for the while loop
while(condition)
{
statement 1;
statement 2;
statement 3;
————–
– — – ———
—————
}
statement 2;
statement 3;
————–
– — – ———
—————
}
program for while Loop
public class WhileLoop
{
public static void main(String args[])
{
int a = 0;while(a <3)
{
system.out.println(“values of a is”+ a)
}
}
}
output:- values of a is 0
values of a are 1
values of a are 2
Example 2: –
int x = 3;
while(x > 0)
{
system.out.println(x);
x –;
}
output :- 3 2 1
do-while Loop
यह loop while loop जैसा ही है। लेकिन यह loop अगर condition true होती है तब do-while loop चलता है। condition false होती है तब सिर्फ do का statement execute हो जाता है यह loop एक exit controlled loop है |
उपयोग किए गए statements के अंत में एक semicolon है।
उपयोग किए गए statements के अंत में एक semicolon है।
the syntax for do-while loop: –
Do
{
statement 1;
statement 2;
statement 3;
}
while(condition);
————-
————-
————-
program for Do – while Loop
{
statement 1;
statement 2;
statement 3;
}
while(condition);
————-
————-
————-
program for Do – while Loop
public class DoWhileLoop
{
public static void main(String args[])
{
int a = 0; do
{
system.out.println(“values of a is”+ a)
a++;
}
while(a <3)
}
}
{
public static void main(String args[])
{
int a = 0; do
{
system.out.println(“values of a is”+ a)
a++;
}
while(a <3)
}
}
output:- values of a is 0
values of a are 1
values of a are 2
Example :
Example :
int x = 1; do{
system.out.println(x);
x++;
}
while(x < 5);
}
output :- 1 2 3 4
For – Loop
output :- 1 2 3 4
For – Loop
for loop में दिए हुए condition तक statement repeat होता रहता है जब तक की condition true न हो जाता |
- for loop यह loop initialization statements, boolean statement and increment/decrement statements से मिलकर बना होता है |
for loop एक entry controlled loop statement है |
the syntax for For- loop: –
for(initial condition, test condition; increment/ decrement) {
for loop में दिए हुए condition तक statement repeat होता रहता है जब तक की condition true न हो जाता |
for loop एक entry controlled loop statement है |
statement 1;
statement 1;
statement 2;
}
statement 1;
statement 2;
}
program For – Loop
public class ForLoop
public static void main(String args[])
{
}
{
for(int j= 0; j<6; j++ )
{
system.out.println(“values of j is”+ j)
}
}
output:- values of a are 0
values of a are 1
values of a are 2
values of is 3
values of a are 4
values of is 5
public static void main(String args[])
{
}
{
for(int j= 0; j<6; j++ )
{
system.out.println(“values of j is”+ j)
}
}
output:- values of a are 0
values of a are 1
values of a are 2
values of is 3
values of a are 4
values of is 5
Example 2:-
for(int j= 1; j<=5; j++ )
{
system.out.println(“j”)
}
output :- 1 2 3 4 5
{
system.out.println(“j”)
}
output :- 1 2 3 4 5
Hindi me Java