continue

Category

Other

Description

Used to jump out of the current iteration of a loop.

Example

while(true){

  x=kb.getInt("Enter a number);

  if (x<100) continue;

}