2 * Copyright (c) 1988, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * @(#) Copyright (c) 1988, 1993, 1994 The Regents of the University of California. All rights reserved.
34 * @(#)number.c 8.3 (Berkeley) 5/4/95
35 * $FreeBSD: src/games/number/number.c,v 1.12 1999/12/12 03:22:35 billf Exp $
36 * $DragonFly: src/games/number/number.c,v 1.4 2005/04/25 16:10:24 liamfoy Exp $
39 #include <sys/types.h>
48 #define MAXNUM 65 /* Biggest number we handle. */
50 static const char *name1
[] = {
51 "", "one", "two", "three",
52 "four", "five", "six", "seven",
53 "eight", "nine", "ten", "eleven",
54 "twelve", "thirteen", "fourteen", "fifteen",
55 "sixteen", "seventeen", "eighteen", "nineteen",
58 "", "ten", "twenty", "thirty",
59 "forty", "fifty", "sixty", "seventy",
63 "hundred", "thousand", "million", "billion",
64 "trillion", "quadrillion", "quintillion", "sextillion",
65 "septillion", "octillion", "nonillion", "decillion",
66 "undecillion", "duodecillion", "tredecillion", "quattuordecillion",
67 "quindecillion", "sexdecillion",
68 "septendecillion", "octodecillion",
69 "novemdecillion", "vigintillion",
72 void convert (char *);
73 int number (char *, int);
76 int unit (int, char *);
82 main(int argc
, char **argv
)
88 while ((ch
= getopt(argc
, argv
, "l")) != -1)
102 fgets(line
, sizeof(line
), stdin
) != NULL
; first
= 0) {
103 if (strchr(line
, '\n') == NULL
)
104 errx(1, "line too long.");
106 (void)printf("...\n");
110 for (first
= 1; *argv
!= NULL
; first
= 0, ++argv
) {
112 (void)printf("...\n");
126 for (p
= line
; *p
!= '\0' && *p
!= '\n'; ++p
) {
138 if (fraction
!= NULL
)
148 badnum
: errx(1, "illegal number: %s", line
);
154 if ((len
= strlen(line
)) > MAXNUM
||
155 (fraction
!= NULL
&& ((flen
= strlen(fraction
)) > MAXNUM
)))
156 errx(1, "number too large, max %d digits.", MAXNUM
);
159 (void)printf("minus%s", lflag
? " " : "\n");
164 rval
= len
> 0 ? unit(len
, line
) : 0;
165 if (fraction
!= NULL
&& flen
!= 0)
166 for (p
= fraction
; *p
!= '\0'; ++p
)
169 (void)printf("%sand%s",
172 if (unit(flen
, fraction
)) {
181 (void)printf("zero%s", lflag
? "" : ".\n");
187 unit(int len
, char *p
)
196 if (number(p
, off
)) {
198 (void)printf(" %s%s",
199 name3
[len
/ 3], lflag
? " " : ".\n");
203 for (; len
> 3; p
+= 3) {
207 (void)printf(" %s%s",
208 name3
[len
/ 3], lflag
? " " : ".\n");
212 if (number(p
, len
)) {
221 number(char *p
, int len
)
230 (void)printf("%s hundred", name1
[*p
- '0']);
235 val
= (p
[1] - '0') + (p
[0] - '0') * 10;
240 (void)printf("%s", name1
[val
]);
242 (void)printf("%s", name2
[val
/ 10]);
244 (void)printf("-%s", name1
[val
% 10]);
252 (void)printf("%s", name1
[*p
- '0']);
261 static const char *pref
[] = { "", "ten-", "hundred-" };
265 (void)printf("tenths.\n");
268 (void)printf("hundredths.\n");
271 (void)printf("%s%sths.\n", pref
[len
% 3], name3
[len
/ 3]);
279 (void)fprintf(stderr
, "usage: number [# ...]\n");