Tagged Questions

In computing and programming, fractional (or "rational") numbers are an alternative to floating point numbers: Since numerator and denominator are stored as integers, the representation is exact, as opposed to most floating point implementations, which cannot represent most rational numbers exactly. ...

learn more… | top users | synonyms

12
votes
6answers
366 views

How to rendering fraction in Swing JComponents

Basically Swing JComponents are able to display numbers in fractions in this form 2 2/3. How can I paint fraction in the nicest form, for example 2⅔? . EDIT . as see I have only one way JTable ...
4
votes
3answers
108 views

How to write fraction value using html?

I want to write fraction value such as the picture below: How do I write fraction value using html without using image? NOTE: I don't want this 1 1/2 pattern but strictly just as the pic above
1
vote
2answers
56 views

Summing and rounding fractions multiplied by number to equal number?

In JavaScript, Given (x) number of fractions like this: 0.3 0.3 0.2 0.1 0.1 (That sum to 1) How can I make sure that when I multiply these by a number (n), say 1000, and round the results to ...
0
votes
2answers
46 views

Need Decimal and Fraction

Now I have the equation working .... would like to give both decimal and fraction. import java.util.Scanner; public class LinearSlopeFinder { public static void main(String[]args){ ...
0
votes
1answer
88 views

How to convert binary number to fraction?

How do I convert a binary to fraction such as for example .10101010001? I am trying to convert a binary fraction to decimal fraction.
-1
votes
5answers
75 views

Approximate decimals by a fraction

The question is: One way to approximate decimals by a fraction is by using this method. For decimal value X, initial conditions are, Z1 = X, D1 = 1 and D0 = 0 Repeat Z(i+1) = 1 / (Z(i) + ...