首页 > 试题广场 >

已知bank文件内容如下: Begin Please pay

[单选题]

已知bank文件内容如下:

Begin

Please pay attention to this issue.

End

请问下面Perl程序的输出是什么?

open(IN,"<bank") or die "File does not exist!";

while (<IN>){

    chomp;                  

    if($i==0){next};         

    print "$_";

    if($i==2){next};

}continue{

    $i++;

}
close IN;
  • Begin

  • Please pay attention to this issue.

  • End

  • undef

第三行的end会输出,程序写的意思不对
发表于 2022-04-30 08:50:15 回复(0)