Perl练习之——循环语句

前端之家收集整理的这篇文章主要介绍了Perl练习之——循环语句前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
#if elsif else 条件语句

$i = <STDIN> ;
chomp $i ;
if($i < 10){
    print "Number is less than 10" ;
} elsif($i > 20){
    print "Number is more than 20" ;
} else{
    print "Number is between 10 and 20." ;
}

#循环语句
$counter = 0 ;
while($counter < 5){
    print "counter is $counter,  " ;
    print "$counter 小于5,进行循环\n" ;
    $counter++  
}


#for 循环
$i = 5 ;
for(;$i >2;){
    print "i is $i\n" ;
    $i--
}
$i = 5 ;
for(;$i>2;$i--){     print "is now is $i \n" ; }

猜你在找的Perl相关文章