Use while loop to sum 100 ramdom numbers : while « Statement « Flash / Flex / ActionScript






Use while loop to sum 100 ramdom numbers

 

package{
  import flash.display.Sprite;
  
  public class Main extends Sprite{
    public function Main(){
        var sum:Number = 0;
        while (sum < 100) {
           trace(sum + " - not there yet.");
           var random:Number = Math.ceil(Math.random() * 10);
           sum += random;
        }
        trace(sum + " - surpassed 100. END");
    }
  }
}

        








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