Use the increment operator with while loop : while « Statement « Flash / Flex / ActionScript






Use the increment operator with while loop

 


package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){

        var total = 2;
        var i = 0;
        while (i < 15) {
          total = total * 2;
          i++;
        }

    }
  }
}

        








Related examples in the same category

1.while Statement
2.A while statement can be used even when the number of times is unknown.
3.Use while loop to calculate 2 to the power of 3
4.Processing Lists with while Loops
5.Ending a while Loop with the break Statement
6.Use while loop to sum 100 ramdom numbers