「Perl」条件分岐の論理積(AND)のサンプル
環境
Perl 5.32.1
Windows10 home 64bit
書式
if (条件1 && 条件2)
論理積(AND)は演算子の左辺及び右辺の条件式が共に真の場合のみ全体の評価が真となります。
使用例
use strict; use warnings; use utf8; binmode STDIN, ':encoding(cp932)'; binmode STDOUT, ':encoding(cp932)'; binmode STDERR, ':encoding(cp932)'; my $age; $age = 34; if ($age >= 30 && $age < 40){ print "30代です"; }
実行結果
>perl 13.pl
30代です