Problem A
Best Rational Approximation
Many microcontrollers have no floating point unit but do have a (reasonably) fast integer divide unit. In these cases it may pay to use rational values to approximate floating point constants. For instance,
is a quite good approximation to
A best rational approximation
Write a program to compute the best rational approximation
to a real number,
Input
The first line of input contains a single integer
Each data set consists of a single line of input. It
contains the data set number,
Output
For each data set there is a single line of output. The
single output line consists of the data set number,
Sample Input 1 | Sample Output 1 |
---|---|
3 1 100000 0.141592653589793238 2 255 0.141592653589793238 3 15 0.141592653589793238 |
1 14093/99532 2 16/113 3 1/7 |