line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
# -*- mode: perl; -*- |
2
|
|
|
|
|
|
|
|
3
|
|
|
|
|
|
|
package Math::BigInt::Named::German; |
4
|
|
|
|
|
|
|
|
5
|
3
|
|
|
3
|
|
8205
|
use 5.006001; |
|
3
|
|
|
|
|
17
|
|
6
|
3
|
|
|
3
|
|
16
|
use strict; |
|
3
|
|
|
|
|
4
|
|
|
3
|
|
|
|
|
63
|
|
7
|
3
|
|
|
3
|
|
12
|
use warnings; |
|
3
|
|
|
|
|
6
|
|
|
3
|
|
|
|
|
90
|
|
8
|
|
|
|
|
|
|
|
9
|
3
|
|
|
3
|
|
259
|
use Math::BigInt::Named; |
|
3
|
|
|
|
|
5
|
|
|
3
|
|
|
|
|
29
|
|
10
|
|
|
|
|
|
|
our @ISA = qw< Math::BigInt::Named >; |
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
our $VERSION = '0.08'; |
13
|
|
|
|
|
|
|
|
14
|
|
|
|
|
|
|
sub name |
15
|
|
|
|
|
|
|
{ |
16
|
|
|
|
|
|
|
# output the name of the number |
17
|
51
|
|
|
51
|
1
|
7620
|
my ($x) = shift; |
18
|
51
|
50
|
|
|
|
102
|
$x = Math::BigInt->new($x) unless ref($x); |
19
|
|
|
|
|
|
|
|
20
|
51
|
|
|
|
|
59
|
my $self = ref($x); |
21
|
|
|
|
|
|
|
|
22
|
51
|
50
|
|
|
|
95
|
return '' if $x->is_nan(); |
23
|
|
|
|
|
|
|
|
24
|
51
|
|
|
|
|
233
|
my $index = 0; |
25
|
|
|
|
|
|
|
|
26
|
51
|
|
|
|
|
59
|
my $ret = ''; |
27
|
51
|
|
|
|
|
82
|
my $y = $x->copy(); my $rem; |
|
51
|
|
|
|
|
798
|
|
28
|
51
|
100
|
|
|
|
97
|
if ($y->sign() eq '-') |
29
|
|
|
|
|
|
|
{ |
30
|
1
|
|
|
|
|
5
|
$ret = 'minus '; |
31
|
1
|
|
|
|
|
8
|
$y->babs(); |
32
|
|
|
|
|
|
|
} |
33
|
51
|
100
|
|
|
|
295
|
if ($y < 1000) |
34
|
|
|
|
|
|
|
{ |
35
|
44
|
|
|
|
|
4377
|
return $ret . $self->_triple($y,1,0); |
36
|
|
|
|
|
|
|
} |
37
|
7
|
|
|
|
|
850
|
while (!$y->is_zero()) |
38
|
|
|
|
|
|
|
{ |
39
|
14
|
|
|
|
|
149
|
($y,$rem) = $y->bdiv(1000); |
40
|
14
|
|
|
|
|
2622
|
$ret = $self->_triple($rem,0,$index) |
41
|
|
|
|
|
|
|
.' ' . $self->_triple_name($index,$rem) . ' ' . $ret; |
42
|
14
|
|
|
|
|
27
|
$index++; |
43
|
|
|
|
|
|
|
} |
44
|
7
|
|
|
|
|
94
|
$ret =~ s/\s+$//; # trailing spaces |
45
|
7
|
|
|
|
|
33
|
$ret; |
46
|
|
|
|
|
|
|
} |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
my $SMALL = [ qw/ |
49
|
|
|
|
|
|
|
null |
50
|
|
|
|
|
|
|
eins |
51
|
|
|
|
|
|
|
zwei |
52
|
|
|
|
|
|
|
drei |
53
|
|
|
|
|
|
|
vier |
54
|
|
|
|
|
|
|
fuenf |
55
|
|
|
|
|
|
|
sechs |
56
|
|
|
|
|
|
|
sieben |
57
|
|
|
|
|
|
|
acht |
58
|
|
|
|
|
|
|
neun |
59
|
|
|
|
|
|
|
zehn |
60
|
|
|
|
|
|
|
oelf |
61
|
|
|
|
|
|
|
zwoelf |
62
|
|
|
|
|
|
|
dreizehn |
63
|
|
|
|
|
|
|
vierzehn |
64
|
|
|
|
|
|
|
fuenfzehn |
65
|
|
|
|
|
|
|
sechzehn |
66
|
|
|
|
|
|
|
siebzehn |
67
|
|
|
|
|
|
|
achtzehn |
68
|
|
|
|
|
|
|
neunzehn |
69
|
|
|
|
|
|
|
/ ]; |
70
|
|
|
|
|
|
|
|
71
|
|
|
|
|
|
|
my $ZEHN = [ qw / |
72
|
|
|
|
|
|
|
zehn |
73
|
|
|
|
|
|
|
zwanzig |
74
|
|
|
|
|
|
|
dreissig |
75
|
|
|
|
|
|
|
vierzig |
76
|
|
|
|
|
|
|
fuenfzig |
77
|
|
|
|
|
|
|
sechzig |
78
|
|
|
|
|
|
|
siebzig |
79
|
|
|
|
|
|
|
achtzig |
80
|
|
|
|
|
|
|
neunzig |
81
|
|
|
|
|
|
|
/ ]; |
82
|
|
|
|
|
|
|
|
83
|
|
|
|
|
|
|
my $HUNDERT = [ qw / |
84
|
|
|
|
|
|
|
ein |
85
|
|
|
|
|
|
|
zwei |
86
|
|
|
|
|
|
|
drei |
87
|
|
|
|
|
|
|
vier |
88
|
|
|
|
|
|
|
fuenf |
89
|
|
|
|
|
|
|
sechs |
90
|
|
|
|
|
|
|
sieben |
91
|
|
|
|
|
|
|
acht |
92
|
|
|
|
|
|
|
neun |
93
|
|
|
|
|
|
|
/ ]; |
94
|
|
|
|
|
|
|
|
95
|
|
|
|
|
|
|
my $TRIPLE = [ qw / |
96
|
|
|
|
|
|
|
mi |
97
|
|
|
|
|
|
|
bi |
98
|
|
|
|
|
|
|
tri |
99
|
|
|
|
|
|
|
quadri |
100
|
|
|
|
|
|
|
penti |
101
|
|
|
|
|
|
|
hexi |
102
|
|
|
|
|
|
|
septi |
103
|
|
|
|
|
|
|
octi |
104
|
|
|
|
|
|
|
/ ]; |
105
|
|
|
|
|
|
|
|
106
|
|
|
|
|
|
|
sub _triple_name |
107
|
|
|
|
|
|
|
{ |
108
|
49
|
|
|
49
|
|
576
|
my ($self,$index,$number) = @_; |
109
|
|
|
|
|
|
|
|
110
|
49
|
100
|
100
|
|
|
155
|
return '' if $index == 0 || $number->is_zero(); |
111
|
40
|
100
|
|
|
|
527
|
return 'tausend' if $index == 1; |
112
|
|
|
|
|
|
|
|
113
|
32
|
|
|
|
|
38
|
my $postfix = 'llion'; my $plural = 'en'; |
|
32
|
|
|
|
|
38
|
|
114
|
32
|
100
|
|
|
|
53
|
if ($index & 1 == 1) |
115
|
|
|
|
|
|
|
{ |
116
|
16
|
|
|
|
|
16
|
$postfix = 'lliarde'; $plural = 'n'; |
|
16
|
|
|
|
|
13
|
|
117
|
|
|
|
|
|
|
} |
118
|
32
|
100
|
|
|
|
50
|
$postfix .= $plural unless $number->is_one(); |
119
|
32
|
|
|
|
|
319
|
$index -= 2; |
120
|
32
|
|
|
|
|
114
|
$TRIPLE->[$index >> 1] . $postfix; |
121
|
|
|
|
|
|
|
} |
122
|
|
|
|
|
|
|
|
123
|
|
|
|
|
|
|
sub _triple |
124
|
|
|
|
|
|
|
{ |
125
|
|
|
|
|
|
|
# return name of a triple (aka >= 0, and <= 1000) |
126
|
|
|
|
|
|
|
# input: number >= 0, < 1000) |
127
|
|
|
|
|
|
|
# only true if triple is the only triple ever ($nr < 1000) |
128
|
|
|
|
|
|
|
# index 0 for last triple, 1 for tausend, 2 for million etc |
129
|
58
|
|
|
58
|
|
86
|
my ($self,$number,$only,$index) = @_; |
130
|
|
|
|
|
|
|
|
131
|
|
|
|
|
|
|
# eins, ein hundert, ein tausend, eine million |
132
|
|
|
|
|
|
|
# zwei, zwei hundert, zwei tausend, zwei million |
133
|
|
|
|
|
|
|
|
134
|
58
|
|
|
|
|
70
|
my $eins = 'ein'; |
135
|
58
|
100
|
|
|
|
96
|
$eins = 'eins' if $index == 0; |
136
|
58
|
50
|
|
|
|
85
|
$eins = 'eine' if $index > 2; |
137
|
|
|
|
|
|
|
|
138
|
58
|
100
|
100
|
|
|
91
|
return '' if $number->is_zero() && !$only; # 0 => null, but only for one |
139
|
57
|
100
|
|
|
|
598
|
return $eins if $number->is_one(); |
140
|
47
|
100
|
|
|
|
483
|
return $SMALL->[$number] if $number < scalar @$SMALL; # known name |
141
|
|
|
|
|
|
|
|
142
|
27
|
|
|
|
|
2502
|
my $hundert = $number / 100; |
143
|
27
|
|
|
|
|
4892
|
my $rem = $number % 100; |
144
|
27
|
|
|
|
|
3988
|
my $rc = ''; |
145
|
27
|
100
|
|
|
|
40
|
$rc = "$HUNDERT->[$hundert-1]hundert" if !$hundert->is_zero(); |
146
|
|
|
|
|
|
|
|
147
|
27
|
100
|
|
|
|
3473
|
my $concat = ''; $concat = 'und' if $rc ne ''; |
|
27
|
|
|
|
|
51
|
|
148
|
27
|
100
|
|
|
|
55
|
return $rc if $rem->is_zero(); |
149
|
18
|
100
|
|
|
|
171
|
return $rc . $concat . $SMALL->[$rem] if $rem < scalar @$SMALL; |
150
|
|
|
|
|
|
|
|
151
|
15
|
|
|
|
|
1276
|
my $zehn; ($zehn,$rem) = $rem->bdiv(10); |
|
15
|
|
|
|
|
28
|
|
152
|
|
|
|
|
|
|
|
153
|
15
|
100
|
|
|
|
2738
|
$rc .= $concat . $HUNDERT->[$rem-1] if !$rem->is_zero(); # 31, 32.. |
154
|
15
|
100
|
|
|
|
2769
|
$concat = ''; $concat = 'und' if $rc ne ''; |
|
15
|
|
|
|
|
31
|
|
155
|
15
|
50
|
|
|
|
31
|
$rc .= $concat . $ZEHN->[$zehn-1] if !$zehn->is_zero(); # 1,2,3.. |
156
|
|
|
|
|
|
|
|
157
|
15
|
|
|
|
|
2944
|
$rc; |
158
|
|
|
|
|
|
|
} |
159
|
|
|
|
|
|
|
|
160
|
|
|
|
|
|
|
1; |
161
|
|
|
|
|
|
|
|
162
|
|
|
|
|
|
|
__END__ |