Answers

Question and Answer:

  Home  Electrical Engineering

⟩ Write the code for finding the factorial of a passed integer. Use a recursive subroutine?

// BEGIN PERL SNIPET

sub factorial {

my $y = shift;

if ( $y > 1 ) {

return $y * &factorial( $y - 1 );

} else {

return 1;

}

}

// END PERL SNIPET

 226 views

More Questions for you: