]>
git.cameronkatri.com Git - bsdgames-darwin.git/blob - number/number.c
2 * Copyright (c) 1988 Regents of the University of California.
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
36 "@(#) Copyright (c) 1988 Regents of the University of California.\n\
37 All rights reserved.\n";
41 /*static char sccsid[] = "from: @(#)number.c 5.1 (Berkeley) 2/28/91";*/
42 static char rcsid
[] = "$Id: number.c,v 1.2 1993/08/01 18:53:19 mycroft Exp $";
51 #define MAXNUM 65 /* biggest number we handle */
53 static char *name1
[] = {
54 "", "one", "two", "three",
55 "four", "five", "six", "seven",
56 "eight", "nine", "ten", "eleven",
57 "twelve", "thirteen", "fourteen", "fifteen",
58 "sixteen", "seventeen", "eighteen", "nineteen",
61 "", "ten", "twenty", "thirty",
62 "forty", "fifty", "sixty", "seventy",
66 "hundred", "thousand", "million", "billion",
67 "trillion", "quadrillion", "quintillion", "sextillion",
68 "septillion", "octillion", "nonillion", "decillion",
69 "undecillion", "duodecillion", "tredecillion", "quattuordecillion",
70 "quindecillion", "sexdecillion",
71 "septendecillion", "octodecillion",
72 "novemdecillion", "vigintillion",
80 char line
[MAXNUM
* 2 + 2]; /* MAXNUM '.' MAXNUM '\0' */
83 for (cnt
= 1;cnt
< argc
;++cnt
) {
88 while (fgets(line
,sizeof(line
),stdin
)) {
103 for (fraction
= NULL
, C
= line
;*C
&& *C
!= '\n';++C
)
125 if (len
= strlen(line
)) {
128 ret
= unit(len
,line
);
130 if (fraction
&& (len
= strlen(fraction
))) {
133 for (C
= fraction
;*C
;++C
)
137 if (unit(len
,fraction
)) {
162 printf(" %s.\n",name3
[len
/ 3]);
166 for (;len
> 3;C
+= 3) {
170 printf(" %s.\n",name3
[len
/ 3]);
193 printf("%s hundred",name1
[*C
- '0']);
198 val
= (C
[1] - '0') + (C
[0] - '0') * 10;
203 fputs(name1
[val
],stdout
);
205 fputs(name2
[val
/ 10],stdout
);
207 printf("-%s",name1
[val
% 10]);
214 fputs(name1
[*C
- '0'],stdout
);
223 static char *pref
[] = { "", "ten-", "hundred-" };
233 printf("%s%sths.\n",pref
[len
% 3],name3
[len
/ 3]);
241 fprintf(stderr
,"number: number too large, max %d digits.\n",MAXNUM
);
242 fputs("usage: number # ...\n",stderr
);