1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
/*
* libHX/assorted/tofrac.c
* Copyright Jan Engelhardt, 1999-2010
*
* This file is part of libHX. libHX is free software; you can
* redistribute it and/or modify it under the terms of the GNU Lesser
* General Public License as published by the Free Software Foundation;
* either version 2.1 or (at your option) any later version.
*/
/*
* Calculates a readable fraction (i.e. 1/3) from arg and puts the
* *numerator into num, the denominator into *denom. Since the fraction
* is found out by an iterative loop, you can specify the minimum value
* of the denominator in *num and the maximum value of the denominator
* into *denom before calling the function.
*
* If a suitable fraction has been found (within the range of the
* minimum / maximum denominator, *num and *denom will be overwritten
* with the results and true is returned; false for no success.
*
* You need to re-put your min/max denom values into *num and *denom
* then.
*/
#include <sys/types.h>
#include <limits.h>
#include <math.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
/* This simplistic version does not deal with negative numbers. */
static bool HX_tofrac(double arg, unsigned long *num, unsigned long *denom)
{
unsigned long i, min_denom = *num, max_denom = *denom;
double j, s;
/*
* This tries all possible denominators until @arg multiplied by @i
* gives a number that has a fractional part of 0, which is when we
* found the optimal fraction.
*/
for (i = min_denom; i < max_denom; ++i) {
s = arg * i;
modf(s, &j);
if (s == j) {
*num = j;
*denom = i;
return true;
}
}
return false;
}
int main(int argc, const char **argv)
{
unsigned long d = 1, n = ULONG_MAX;
if (argc < 2) {
fprintf(stderr, "Usage: %s 3.141592\n", *argv);
return EXIT_FAILURE;
}
if (!HX_tofrac(strtod(argv[1], NULL), &d, &n)) {
fprintf(stderr, "Our algorithm was too weak :-)\n");
return EXIT_FAILURE;
}
printf("%lu/%lu\n", d, n);
return EXIT_SUCCESS;
}
|