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:-
{
public static void main(String args[])
{
int i=1;
while(i<=10)
int i=1;
while(i<=10)
{
System.out.println(i);
i++;
}
}
}
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:
Output
technicalsuryansh technicalsuryansh technicalsuryansh technicalsuryansh technicalsuryansh technicalsuryansh technicalsuryansh technicalsuryansh technicalsuryansh technicalsuryansh technicalsuryansh technicalsuryansh Ctrl+c
Check out these related programs:
No comments:
Post a Comment