Breaking

Search This Blog

Friday 9 November 2018

while loop in java [Hindi and English Both]

while loop in java 


Last tutorial, we discussed for loop. In this tutorial, we will discuss during the loop. As discussed in previous tutorials, Loop is used repeatedly to execute the set of statements unless a specific situation is satisfied.

अंतिम ट्यूटोरियल, हमने for Loop के लिए चर्चा की। इस ट्यूटोरियल में हम लूप के दौरान चर्चा करेंगे। जैसा कि पिछले ट्यूटोरियल में चर्चा की गई है, लूप का उपयोग बार-बार कथन के सेट को निष्पादित करने के लिए किया जाता है जब तक कोई विशेष स्थिति संतुष्ट न हो जाए।

Syntax of while loop

while(condition)
{
   statement(s); //code to be executed 
}


Example:-

 class WhileExample 
{  
public static void main(String args[])
       {  
    int i=1;  
    while(i<=10)
                {  
        System.out.println(i);  
    i++;  
              }  
     }  
}  

Output:
1
2
3
4
5
6
7
8
9
10

Infinitive While Loop in Java

If you become true in the loop for a while, then it will be infinitive during the loop.
यदि आप थोड़ी देर लूप में सच हो जाते हैं, तो यह लूप के दौरान infinitive होगा।

Syntax:

while (true){
    statement(s);
}

Example:
  1. public class Whileloop{  
  2. public static void main(String args[]) {  
  3.     while(true){  
  4.         System.out.println("technicalsuryansh");  
  5.     }  
  6. }  
  7. }  

Output
technicalsuryansh
technicalsuryansh
technicalsuryansh
technicalsuryansh
technicalsuryansh
technicalsuryansh
technicalsuryansh
technicalsuryansh
technicalsuryansh
technicalsuryansh
technicalsuryansh
technicalsuryansh
Ctrl+c

Check out these related programs:

  1. Java Program to Check if a Given Integer is Odd or Even
  2. how to run java program in CMD
  3. For Loops in java [hindi and english both]
  4. Hello : How to Create Your First Java Program
  5. How to set Environment Variables in Java: Path and Classpath


No comments:

Post a Comment

'; (function() { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = '//' + disqus_shortname + '.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })();