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");
}
}
}
hasNext()returnstrueand get the element usingnext()in the loop. Or use an index.