While loop java with strings

While loop java with strings

  • Introduction to Java
  • The complete History of Java Programming Language
  • C++ vs Java vs Python
  • How to Download and Install Java for 64 bit machine?
  • Setting up the environment in Java
  • How to Download and Install Eclipse on Windows?
  • JDK in Java
  • How JVM Works – JVM Architecture?
  • Differences between JDK, JRE and JVM
  • Just In Time Compiler
  • Difference between JIT and JVM in Java
  • Difference between Byte Code and Machine Code
  • How is Java platform independent?
  • Decision Making in Java (if, if-else, switch, break, continue, jump)
  • Java if statement with Examples
  • Java if-else
  • Java if-else-if ladder with Examples
  • Loops in Java
  • For Loop in Java
  • Java while loop with Examples
  • Java do-while loop with Examples
  • For-each loop in Java
  • Continue Statement in Java
  • Break statement in Java
  • Usage of Break keyword in Java
  • return keyword in Java
  • Object Oriented Programming (OOPs) Concept in Java
  • Why Java is not a purely Object-Oriented Language?
  • Classes and Objects in Java
  • Naming Conventions in Java
  • Java Methods
  • Access Modifiers in Java
  • Java Constructors
  • Four Main Object Oriented Programming Concepts of Java
  • Inheritance in Java
  • Abstraction in Java
  • Encapsulation in Java
  • Polymorphism in Java
  • Interfaces in Java
  • ‘this’ reference in Java
Читайте также:  Referat na temu html

Источник

Java while Loops

The Java while loop is similar to the for loop. The while loop enables your Java program to repeat a set of operations while a certain conditions is true.

The Java while loop exist in two variations. The commonly used while loop and the less often do while version. I will cover both while loop versions in this text.

The Java while Loop

Let us first look at the most commonly used variation of the Java while loop. Here is a simple Java while loop example:

int counter = 0; while(counter

This example shows a while loop that executes the body of the loop as long as the counter variable is less than 10. Inside the while loop body the counter is incremented. Eventually the counter variable will no longer be less than 10, and the while loop will stop executing.

Here is another while example that uses a boolean to make the comparison:

boolean shouldContinue = true; while(shouldContinue == true) < System.out.println("running"); double random = Math.random() * 10D; if(random >5) < shouldContinue = true; >else < shouldContinue = false; >>

This Java while example tests the boolean variable shouldContinue to check if the while loop should be executed or not. If the shouldContinue variable has the value true , the while loop body is executed one more time. If the shouldContinue variable has the value false , the while loop stops, and execution continues at the next statement after the while loop.

Inside the while loop body a random number between 0 and 10 is generated. If the random number is larger than 5, then the shouldContinue variable will be set to true . If the random number is 5 or less, the shouldContinue variable will be set to false .

Like with for loops, the curly braces are optional around the while loop body. If you omit the curly braces then the while loop body will consist of only the first following Java statement. Here is a Java while example illustrating that:

while(iterator.hasNext()) System.out.println("next: " + iterator.next()); // executed in loop System.out.println("second line"); // executed after loop

In this example, only the first System.out.println() statement is executed inside the while loop. The second System.out.println() statement is not executed until after the while loop is finished.

Forgetting the curly braces around the while loop body is a common mistake. Therefore it can be a good habit to just always put them around the while loop body.

The Java do while Loop

The second variation of the Java while loop is the do while construct. Here is a Java do while example:

InputStream inputStream = new FileInputStream("data/text.xml"); int data; do < data = inputStream.read(); >while(data != -1);

Notice the while loop condition is now moved to after the do while loop body. The do while loop body is always executed at least once, and is then executed repeatedly while the while loop condition is true .

The main difference between the two while loop variations is exactly that the do while loop is always executed at least once before the while loop condition is tested. This is not the case with the normal while loop variation explained in the beginning of this text.

The two variations of the Java while loop come in handy in different situations. I mostly used the first while loop variation, but there are situations where I have used the second variation.

The continue Command

Java contains a continue command which can be used inside Java while (and for ) loops. The continue command is placed inside the body of the while loop. When the continue command is met, the Java Virtual Machine jumps to the next iteration of the loop without executing more of the while loop body. The next iteration of the while loop body will proceed as any other. If that iteration also meets the continue command, that iteration too will skip to the next iteration, and so forth.

Here is a simple continue example inside a while loop:

String[] strings = < "John", "Jack", "Abraham", "Jennifer", "Ann" >; int wordsStartingWithJ = 0; int i=0; while( i < strings.length ) < if(! strings[i].toLowerCase().startsWith("j")) < i++; continue; >wordsStartingWithJ++; i++; >

Notice the if statement inside the while loop. This if statement checks if each String in the strings array does not start with with the letter j . If not, then the continue command is executed, and the while loop continues to the next iteration.

If the current String in the strings array does start with the letter j , then the next Java statement after the if statement is executed, and the variable wordsStartingWithJ is incremented by 1.

The continue command also works inside do while loops. Here is a do while version of the previous example:

String[] strings = < "John", "Jack", "Abraham", "Jennifer", "Ann" >; int wordsStartingWithJ = 0; int i=0; do < if(! strings[i].toLowerCase().startsWith("j")) < i++; continue; >wordsStartingWithJ++; i++; > while( i < strings.length );

Notice that this version of the while loop requires that the strings array has a least one element, or it will fail when trying to index into the array at position 0 during the first iteration of the do while loop.

The break Command

The break command is a command that works inside Java while (and for ) loops. When the break command is met, the Java Virtual Machine breaks out of the while loop, even if the loop condition is still true. No more iterations of the while loop are executed once a break command is met. Here is a break command example inside a while loop:

String[] strings = < "John", "Jack", "Abraham", "Jennifer", "Ann" >; int wordsStartingWithJ = 0; int i=0; while(i < strings.length; ) < if(strings[i].toLowerCase().startsWith("j")) < wordsStartingWithJ++; >if(wordsStartingWithJ >= 3) < break; >i++; >

Notice the second if statement inside the while loop. This if statement checks if 3 words or more have been found which starts with the letter j . If yes, the break command is executed, and the program breaks out of the while loop.

Like with the continue command, the break command also works inside do while loops. Here is the example from before, using a do while loop instead:

String[] strings = < "John", "Jack", "Abraham", "Jennifer", "Ann" >; int wordsStartingWithJ = 0; int i=0; do < if(strings[i].toLowerCase().startsWith("j")) < wordsStartingWithJ++; >if(wordsStartingWithJ >= 3) < break; >i++; > while( i < strings.length; )

Note that this variation of the while loop requires that the strings array always has at least one element. If not, it will fail during the first iteration of the do while loop, when it tries to access the first element (with index 0) of the array.

Variable Visibility in while Loops

Variables declared inside a Java while loop are only visible inside the while loop body. Look at this while loop example:

After the while loop body has finished executing the count variable is still visible, since the count variable is declared outside the while loop body. But the name variable is not visible because it is declared inside the while loop body. Therefore the name variable is only visible inside the while loop body.

Источник

While loop in Java with examples

In this tutorial, you will learn while loop in java with the help of examples. Similar to for loop, the while loop is used to execute a set of statements repeatedly until the specified condition returns false.

Syntax of while loop

The block of code inside the body (content inside curly braces) of while loop executes repeatedly until the condition returns false.

Java while loop flowchart

In while loop, condition is evaluated first and if it returns true then the statements inside while loop execute. When condition returns false, the control comes out of loop and jumps to the next statement after while loop.

Note: This block of code, generally contains increment or decrement statements to modify the variable used in the condition. This is why after each iteration of while loop, condition is checked again. If the condition returns true, the block of code executes again else the loop ends. This way we can end the execution of while loop otherwise the loop would execute indefinitely.

while loop java

Simple while loop example

This is a simple java program to demonstrate the use of while loop. In this program, we are printing the integer number in reverse order starting from 10 (as i is initialized as 10). Inside the body of while loop, we are decrementing the value of i using i-- . So on every next iteration of while loop, the value of i is less by 1, the loop checks whether the value of i >1 , if yes it executes the codes else the loop ends. At the very last iteration of while loop, the value of i is 1, loop checks the condition and it returns false as i.

Infinite while loop

In this example, we are demonstrating the infinite while loop. A loop is called infinite loop, if it never ends which means the condition specified by the loop never returns false.

In the following example, the condition is i>1 , which never returns false as the initial value of i is 10 and at every iteration of loop, the value of i is increased using i++ .

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

Here is another example of infinite while loop. In the following code, the true boolean value is provided in place of the condition, this will make the loop to run indefinitely.

Example: Iterating an array using while loop

In the following example, we are iterating an array and printing the elements of the given array using while loop.

class WhileLoopExample3 < public static void main(String args[])< int arr[]=; //i starts with 0 as array index starts with 0 too int i=0; while(i <4)< System.out.println(arr[i]); i++; >> >

Explanation:
First iteration of loop: value of i is 0, so the value of arr[0] is printed, arr[0] represents the first element of the array arr .
Second iteration: value of i is 1, second element of the array represented by arr[1] is printed.
Third iteration: value of i is 2, third element of the array represented by arr[2] is printed.
Fourth iteration: value of i is 3, fourth element of the array represented by arr[3] is printed.
After fourth iteration: value of i is 4, the condition i

Practice the following java programs related to while loop:

About the Author

I have 15 years of experience in the IT industry, working with renowned multinational corporations. Additionally, I have dedicated over a decade to teaching, allowing me to refine my skills in delivering information in a simple and easily understandable manner.

Comments

Hey,
the notes were really helpful but i couldn’t understand the last example .Can anyone help me please?

First of all…..
The initialization done with i=0
Then goto while loop and check the condition i It is true goto the loop body execute the looping statement i.e., args[0]
Then increment the i value by 1
After incrementing again check the while loop condition …….
……
Until the condition is false.
It prints given o/p
….thats all

i would like to print all the tables with while loop
for example i want the output as :
1*1=1
1*2=2
………….
2*1=2
2*2=4
…………..
3*1=3
3*2=6
…..
up untill 10th table Can someone help me to write the code for this.
Thank you

public class Tables2 <
public static void main(String[] args) <
int num=3;
int i=1;
while(i <=10)<
System.out.println("Tables 2: " +num*i);
i++;
>
> >

hi , I have small doudt when use for loop and when use while loop
and what is the different between for loop and while loop

In for loop if the condition is true, block of statement executes first
——————
means change reflects after the completion of first iteration In while loop if the condition is true and if it finds the increment/decrement statement in first line inside the block then it process the increment/decrement operation first and prints the output accordingly
——————
means changes reflects in first iteration itself else if the increment/decrement statement is not in first line then it is same as ‘for’ loop.
Please find the example below,
Example for loop:
class Forlooparrayexample public static void main(String args[]) int a[]=;
for(int i=0;i <4;++i)
System.out.println(a[i]);
>
>
>
output:
1
2
3
4 Example while loop:
class Whilelooparray public static void main(String[] args)
int a=0;
int []i=new int [];
while(a <3)
++a;
System.out.println(i[a]);
>
>
>
output:
2
3
4

Write a method with a while loop to prints 1 through
n in square brackets. For example, if n = 6 print
! ![1] [2] [3] [4] [5] [6]!

Источник

Оцените статью