#!/usr/bin/perl
@names = qw / fred betty barney dino wilma pebbles bamm-bamm /;
@lines = <STDIN>;
foreach (@lines){
print "$names[$_-1]\n";
}

相关文章:

  • 2021-07-15
  • 2022-12-23
  • 2021-05-29
  • 2021-09-05
  • 2022-12-23
  • 2022-02-13
  • 2022-02-07
  • 2021-10-27
猜你喜欢
  • 2021-11-13
  • 2021-05-22
  • 2022-01-03
  • 2022-12-23
  • 2022-12-23
  • 2021-05-14
  • 2021-06-30
相关资源
相似解决方案