Use while loop to calculate 2 to the power of 3 : while « Statement « Flash / Flex / ActionScript






Use while loop to calculate 2 to the power of 3

 


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


        var total = 2;
        var counter = 0;
        
        while (counter < 2) {
          total = total * 2;
          counter = counter + 1;
        }
    }
  }
}

        








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 the increment operator with while loop
4.Processing Lists with while Loops
5.Ending a while Loop with the break Statement
6.Use while loop to sum 100 ramdom numbers