first commit
This commit is contained in:
17
perl/Examples/Chap5/binary-1
Normal file
17
perl/Examples/Chap5/binary-1
Normal file
@@ -0,0 +1,17 @@
|
||||
|
||||
|
||||
###
|
||||
### binary1
|
||||
###
|
||||
|
||||
## Chapter 5 section 4.2
|
||||
|
||||
sub binary {
|
||||
my ($n, $RETVAL) = @_;
|
||||
$RETVAL = "" unless defined $RETVAL;
|
||||
my $k = int($n/2);
|
||||
my $b = $n % 2;
|
||||
$RETVAL = "$b$RETVAL";
|
||||
return $RETVAL if $n == 0 || $n == 1;
|
||||
binary($k, $RETVAL);
|
||||
}
|
||||
Reference in New Issue
Block a user