Help for this page

Select Code to Download


  1. or download this
    do 
    {
    ...
       $i++;
    }until($i<=10)
    
  2. or download this
    use strict;
    my $i=5;
    ...
       $i--;
    }until($i<=0);
    
  3. or download this
    use strict;
    my $i=5;
    ...
       print "the value of i inside the loop is :$i\n";
       $i--;
    }until($i<=0);