2
votes
4answers
130 views
How can I turn a floating point number into the closest fraction represented by a byte numerator and denominator?
How can I write an algorithm that given a floating point number, and attempts to represent is as accurately as possible using a numerator and a denominator, both restricted to the …
0
votes
2answers
80 views
Passing the values to the fraction class in java
If i was to make a new program and wanted to have a fraction class and what my book calls a driver class wich is a main class and i have code like this
// Driver class
import jav …
0
votes
1answer
105 views
Finding if two numbers have the same digit and then remove them from in the original number in Haskell
Hi
I am doing project euler question 33 and have divised a refactor to solve it but I can't think of how to remove the digit if it is the same across both x and y.
I got this far:
…
-3
votes
3answers
262 views
My problem is how do i make this work
import java.util.Scanner;
public class Fraction
{
private int numerator;
private int denominator;
private int product;
private int sum;
public Fraction(int num, int denom …
0
votes
3answers
153 views
A way to get a math answer in fraction form
I'm trying to write a program that will help someone study for the GRE math. As many of you may know, fractions are a big part of the test, and calculators aren't allowed. Basicall …
3
votes
4answers
302 views
Converting fractions to html entities
We've got some fraction information stored in the database, e.g. ¾ ½
Short of doing a search and replace, are there any inbuilt PHP functions that will automatically convert these …
