「Perl」論理演算子の論理和のサンプル
構文
if(条件式1 ||条件式2)
サンプルコード
#! /usr/bin/perl use strict; use warnings; my $x = 34; my $y = 59; if ($x == 25 || $y == 56){ print "AAAA"; }else{ print "BBBB"; }
結果
BBBB
Coding Changes the World
構文
if(条件式1 ||条件式2)
サンプルコード
#! /usr/bin/perl use strict; use warnings; my $x = 34; my $y = 59; if ($x == 25 || $y == 56){ print "AAAA"; }else{ print "BBBB"; }
結果
BBBB