if ( 条件式 ) { 処理.... }elsif ( 条件式 ) { 処理.... }
if ( $a==1 ) { print '$aは1です。'; }elsif ($a==2){ print '$aは2です。'; }