Enter a decimal number and I'll attempt to convert it to a vulgar fraction.
Credit to @gtoal for the base project though at this point everything except the balance picture is mine. Here's another method to convert a decimal to its fractional value. To do this, the program first has to make the numerator and denominator integer values (multiply by ten until modulo 1 == 0). Next the program uses Euclid's method to find the greatest common divisor of the fractional parts and divides them by the result. This process can convert much larger decimals by implementing my infinite precision calculator.