NetBSD/games/number/number.c

297 lines
6.4 KiB
C
Raw Normal View History

2004-01-27 23:30:28 +03:00
/* $NetBSD: number.c,v 1.9 2004/01/27 20:30:30 jsm Exp $ */
1993-03-21 12:45:37 +03:00
/*
* Copyright (c) 1988, 1993, 1994
* The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the University nor the names of its contributors
1993-03-21 12:45:37 +03:00
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
1997-10-10 20:38:40 +04:00
#include <sys/cdefs.h>
1993-03-21 12:45:37 +03:00
#ifndef lint
1997-10-10 20:38:40 +04:00
__COPYRIGHT("@(#) Copyright (c) 1988, 1993, 1994\n\
The Regents of the University of California. All rights reserved.\n");
1993-03-21 12:45:37 +03:00
#endif /* not lint */
#ifndef lint
#if 0
1997-01-07 14:56:32 +03:00
static char sccsid[] = "@(#)number.c 8.3 (Berkeley) 5/4/95";
#else
2004-01-27 23:30:28 +03:00
__RCSID("$NetBSD: number.c,v 1.9 2004/01/27 20:30:30 jsm Exp $");
#endif
1993-03-21 12:45:37 +03:00
#endif /* not lint */
#include <sys/types.h>
1993-03-21 12:45:37 +03:00
#include <ctype.h>
1997-01-07 14:56:32 +03:00
#include <err.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
1997-01-07 14:56:32 +03:00
#include <unistd.h>
1993-03-21 12:45:37 +03:00
#define MAXNUM 65 /* Biggest number we handle. */
1993-03-21 12:45:37 +03:00
static const char *const name1[] = {
1993-03-21 12:45:37 +03:00
"", "one", "two", "three",
"four", "five", "six", "seven",
"eight", "nine", "ten", "eleven",
"twelve", "thirteen", "fourteen", "fifteen",
"sixteen", "seventeen", "eighteen", "nineteen",
},
*const name2[] = {
1993-03-21 12:45:37 +03:00
"", "ten", "twenty", "thirty",
"forty", "fifty", "sixty", "seventy",
"eighty", "ninety",
},
*const name3[] = {
1993-03-21 12:45:37 +03:00
"hundred", "thousand", "million", "billion",
"trillion", "quadrillion", "quintillion", "sextillion",
"septillion", "octillion", "nonillion", "decillion",
"undecillion", "duodecillion", "tredecillion", "quattuordecillion",
"quindecillion", "sexdecillion",
"septendecillion", "octodecillion",
"novemdecillion", "vigintillion",
};
2004-01-27 23:30:28 +03:00
void convert(char *);
int main(int, char *[]);
int number(const char *, int);
void pfract(int);
int unit(int, const char *);
void usage(void) __attribute__((__noreturn__));
int lflag;
int
main(argc, argv)
int argc;
char *argv[];
1993-03-21 12:45:37 +03:00
{
int ch, first;
char line[256];
1993-03-21 12:45:37 +03:00
lflag = 0;
1997-10-10 20:38:40 +04:00
while ((ch = getopt(argc, argv, "l")) != -1)
switch (ch) {
case 'l':
lflag = 1;
break;
case '?':
default:
usage();
1993-03-21 12:45:37 +03:00
}
argc -= optind;
argv += optind;
if (*argv == NULL)
for (first = 1;
fgets(line, sizeof(line), stdin) != NULL; first = 0) {
if (strchr(line, '\n') == NULL)
errx(1, "line too long.");
if (!first)
(void)printf("...\n");
1993-03-21 12:45:37 +03:00
convert(line);
}
else
for (first = 1; *argv != NULL; first = 0, ++argv) {
if (!first)
(void)printf("...\n");
convert(*argv);
1993-03-21 12:45:37 +03:00
}
exit(0);
}
void
1993-03-21 12:45:37 +03:00
convert(line)
char *line;
1993-03-21 12:45:37 +03:00
{
1997-10-10 20:38:40 +04:00
int flen, len, rval;
char *p, *fraction;
1997-10-10 20:38:40 +04:00
flen = 0;
fraction = NULL;
for (p = line; *p != '\0' && *p != '\n'; ++p) {
if (isblank(*p)) {
if (p == line) {
++line;
continue;
1993-03-21 12:45:37 +03:00
}
goto badnum;
}
if (isdigit(*p))
continue;
switch (*p) {
case '.':
if (fraction != NULL)
goto badnum;
fraction = p + 1;
*p = '\0';
break;
case '-':
if (p == line)
break;
/* FALLTHROUGH */
default:
badnum: errx(1, "illegal number: %s", line);
break;
}
}
*p = '\0';
if ((len = strlen(line)) > MAXNUM ||
1997-10-10 20:38:40 +04:00
(fraction != NULL && (flen = strlen(fraction)) > MAXNUM))
errx(1, "number too large, max %d digits.", MAXNUM);
1993-03-21 12:45:37 +03:00
if (*line == '-') {
(void)printf("minus%s", lflag ? " " : "\n");
1993-03-21 12:45:37 +03:00
++line;
--len;
1993-03-21 12:45:37 +03:00
}
rval = len > 0 ? unit(len, line) : 0;
if (fraction != NULL && flen != 0)
for (p = fraction; *p != '\0'; ++p)
if (*p != '0') {
if (rval)
(void)printf("%sand%s",
lflag ? " " : "",
lflag ? " " : "\n");
if (unit(flen, fraction)) {
if (lflag)
(void)printf(" ");
pfract(flen);
rval = 1;
1993-03-21 12:45:37 +03:00
}
break;
}
if (!rval)
(void)printf("zero%s", lflag ? "" : ".\n");
if (lflag)
(void)printf("\n");
1993-03-21 12:45:37 +03:00
}
int
unit(len, p)
1997-10-10 20:38:40 +04:00
int len;
const char *p;
1993-03-21 12:45:37 +03:00
{
1997-10-10 20:38:40 +04:00
int off, rval;
1993-03-21 12:45:37 +03:00
rval = 0;
1993-03-21 12:45:37 +03:00
if (len > 3) {
if (len % 3) {
off = len % 3;
len -= off;
if (number(p, off)) {
rval = 1;
(void)printf(" %s%s",
name3[len / 3], lflag ? " " : ".\n");
1993-03-21 12:45:37 +03:00
}
p += off;
1993-03-21 12:45:37 +03:00
}
for (; len > 3; p += 3) {
1993-03-21 12:45:37 +03:00
len -= 3;
if (number(p, 3)) {
rval = 1;
(void)printf(" %s%s",
name3[len / 3], lflag ? " " : ".\n");
1993-03-21 12:45:37 +03:00
}
}
}
if (number(p, len)) {
if (!lflag)
(void)printf(".\n");
rval = 1;
1993-03-21 12:45:37 +03:00
}
return (rval);
1993-03-21 12:45:37 +03:00
}
int
number(p, len)
const char *p;
int len;
1993-03-21 12:45:37 +03:00
{
1997-10-10 20:38:40 +04:00
int val, rval;
1993-03-21 12:45:37 +03:00
rval = 0;
switch (len) {
1993-03-21 12:45:37 +03:00
case 3:
if (*p != '0') {
rval = 1;
(void)printf("%s hundred", name1[*p - '0']);
1993-03-21 12:45:37 +03:00
}
++p;
/* FALLTHROUGH */
1993-03-21 12:45:37 +03:00
case 2:
val = (p[1] - '0') + (p[0] - '0') * 10;
1993-03-21 12:45:37 +03:00
if (val) {
if (rval)
(void)printf(" ");
1993-03-21 12:45:37 +03:00
if (val < 20)
(void)printf("%s", name1[val]);
1993-03-21 12:45:37 +03:00
else {
(void)printf("%s", name2[val / 10]);
1993-03-21 12:45:37 +03:00
if (val % 10)
(void)printf("-%s", name1[val % 10]);
1993-03-21 12:45:37 +03:00
}
rval = 1;
1993-03-21 12:45:37 +03:00
}
break;
case 1:
if (*p != '0') {
rval = 1;
(void)printf("%s", name1[*p - '0']);
1993-03-21 12:45:37 +03:00
}
}
return (rval);
1993-03-21 12:45:37 +03:00
}
void
1993-03-21 12:45:37 +03:00
pfract(len)
int len;
1993-03-21 12:45:37 +03:00
{
static const char *const pref[] = { "", "ten-", "hundred-" };
1993-03-21 12:45:37 +03:00
switch(len) {
case 1:
(void)printf("tenths.\n");
1993-03-21 12:45:37 +03:00
break;
case 2:
(void)printf("hundredths.\n");
1993-03-21 12:45:37 +03:00
break;
default:
(void)printf("%s%sths.\n", pref[len % 3], name3[len / 3]);
break;
1993-03-21 12:45:37 +03:00
}
}
void
usage()
1993-03-21 12:45:37 +03:00
{
(void)fprintf(stderr, "usage: number [# ...]\n");
exit(1);
1993-03-21 12:45:37 +03:00
}