- 论坛徽章:
- 145
|
本帖最后由 jason680 于 2016-01-03 15:54 编辑
回复 1# weichanghe2000
$ perl exam.pl exam.txt
1. which command is used to cut trailing newline?
Ans ( B ) : chomp
3. It is better to add a semicolon at the end of line in block in order to build a good program style.
Ans ( A ) : True
4. which command will jump current loop and enter into another loop?
Ans ( C ) : next
10. The ____ function removes the given key (and its corresponding value) from the hash.
Ans ( D ) : delete
12. The ____ function yields a list of all the keys in a hash, and the values function gives the corresponding values.
Ans ( A ) : keys
19. How to sort an array by ascending numeric order, such as @numbers
Ans ( A ) : @nums=sort {$a <=> $b} @numbers
$ cat exam.pl
use strict;
use warnings;
my %hExam;
my($sNum, $sAns,$sQu);
while(<>){
chomp;
if(s/^(\d+)[.]//){
$sNum = $1;
if(! s/\( \s* (\S+) \s* \) \s*$//x){
die "exam $sNum: can't not get Answer field\n";
}
$sAns = $1;
s/^\s+|\s+$//g;
$sQu = $_;
next;
}
if(m/^[ABCDEFG][.] /){
my(undef, %hAns) = split(/([A-G])[.] /);
foreach(keys %hAns){
$hExam{$sNum}{$_} = $hAns{$_};
}
$hExam{$sNum}{"QU"} = $sQu;
$hExam{$sNum}{"ANS"} = $sAns;
next;
}
next if(m/^\s*$/);
s/^\s+|\s+$//g;
$sQu .= " $_";
}
for(sort {$a <=> $b} keys %hExam){
print "$_. $hExam{$_}{QU}\n";
$sAns = $hExam{$_}{ANS};
print " Ans ( $sAns ) : $hExam{$_}{$sAns}\n";
}
|
|