在Perl中,條件判斷和循環(huán)操作可以使用if、elsif、else、while、for等關(guān)鍵字來實現(xiàn)。下面是一些常用的條件判斷和循環(huán)操作示例:
my $num = 10;
if ($num > 0) {
print "Number is positive\n";
} elsif ($num < 0) {
print "Number is negative\n";
} else {
print "Number is zero\n";
}
# 使用while循環(huán)打印1到10
my $i = 1;
while ($i <= 10) {
print "$i\n";
$i++;
}
# 使用for循環(huán)打印1到10
for my $i (1..10) {
print "$i\n";
}
# 使用foreach循環(huán)遍歷數(shù)組
my @array = (1, 2, 3, 4, 5);
foreach my $element (@array) {
print "$element\n";
}
除了以上示例,Perl還提供了更多的條件判斷和循環(huán)操作方法,如unless、until、do while等,可以根據(jù)具體需求選擇合適的方式來實現(xiàn)條件判斷和循環(huán)操作。