Chinaunix首页 | 论坛 | 博客
  • 博客访问: 855890
  • 博文数量: 253
  • 博客积分: 6891
  • 博客等级: 准将
  • 技术积分: 2502
  • 用 户 组: 普通用户
  • 注册时间: 2010-11-03 11:01
文章分类

全部博文(253)

文章存档

2016年(4)

2013年(3)

2012年(32)

2011年(184)

2010年(30)

$#_

分类: Python/Ruby

2011-10-09 16:21:01

$#_ the index of the last element.
@_ the count of the elements.

  1. #!/usr/bin/perl -w
  2. #
  3. use strict;

  4. my @fred = qw{ 1 3 5 7 9 };
  5. #my $fred_total = total(@fred);
  6. my $fred_total = total((1..1000));
  7. print "The total of \@fred is $fred_total.\n";
  8. #print "Enter some numbers on separate lines: ";
  9. #my $user_total = total(<STDIN>);
  10. #print "The total of those numbers is $user_total.\n";
  11. my @above = above_average((0..10));
  12. print "the above is @above\n";

  13. sub total{
  14.     my $sum;

  15.     foreach (@_){
  16.         $sum += $_;
  17.     }
  18.     $sum;
  19. }

  20. sub above_average{
  21.     my $average = total(@_)/@_;
  22.     my @list;

  23.     foreach (@_){
  24.         if ($_ > $average){
  25.             push @list, $_ ;
  26.         }
  27.     }
  28.     @list;
  29. }





阅读(334) | 评论(0) | 转发(0) |
0

上一篇:<STDIN> in List Context

下一篇:state

给主人留下些什么吧!~~