简体   繁体   中英

For loop to While loop Java

how can i change this code into while loop . I'll convert it into a while loop

public class example {
    public static void main(String[] args) {
        int [] numbers={10, 20, 30, 40, 50};
        for(int x:numbers){
            if(x==30){
                break;
            }
            System.out.print(x);
            System.out.print("\n");
        }
    }
}
    int[] numbers = {10, 20, 30, 40, 50};    
    int i = 0;                               
    while (i < numbers.length) {             //iterating till the last element in the array on index
        int currentValue = numbers[i];       //storing in a variable for reuse while printing the value
        if (currentValue == 30) {            //conditional break in the loop as OP
            break;
        }
        System.out.println(currentValue);    //printing each element in a newline
        i++;                                 //incrementing the counter to the next index
    }

Output:

10
20

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM