Tagged Questions

10
votes
4answers
422 views

What is the best way to separate double into two parts “integer & fraction” in java

I have tried to separate 5.6 (for example) by the following method: private static double[] method(double d) { int integerPart = 0; double fractionPart = 0.0; integerPart = (int) d; ...
5
votes
2answers
99 views

Is Java Contradicting Itself?

Should I declare Math.round(1/2) in Java to be an int or a double? If both are fine, which is more correct? Also, why is it that Eclipse is telling me Math.round(1/2) = 0.0, while Math.round(0.5) = ...
5
votes
5answers
355 views

Converting a float into a string fraction representation

In Java, I am trying to find a way to convert a float number into a fraction string. For example: float num = 1.33333; String numStr = Convert(num); // Should return "1 1/3" float num2 = 1.333; ...
4
votes
3answers
447 views

Egyptian Fractions in C

The ancient Egyptians only used fractions of the form 1/n so any other fraction had to be represented as a sum of such unit fractions and, furthermore, all the unit fractions were different! What is ...
3
votes
5answers
139 views

Floating-Point Arithmetic = What is the worst precision/difference from Dec to Binary?

as all know decimal fractions (like 0.1) , when stored as floating point (like double or float) will be internally represented in "binary format" (IEEE 754). And some decimal fractions can not ...
3
votes
6answers
791 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 range of a Java ...
2
votes
3answers
90 views

Get the integral part of a BigFraction, as a BigInteger

What is an easy way to get the integral part of a BigFraction as a BigInteger? Basically I want the same result that the intValue and longValue methods return but with arbitrary precision. I also ...
1
vote
4answers
464 views

How to get the length of a numbers fraction part?

How do I find out the length or the number of digits of the fraction part of a decimal number? I can see a few aproaches, e.g. with Strings like this one: public static int ...
0
votes
2answers
98 views

work with fractions - Java NumberFormat pattern

I am using dojo, and i read this framework uses the Java NumberFormat pattern. My question is:how to maintain the values of slider with fractions, and not the division. For example, 1/3 and not ...
0
votes
4answers
188 views

Java modulo operator and GCD

Why does this code give me an answer of 25? public int FindGcd() { int num = this.num; int den = this.den; while(den!=0) { int t = den; ...
0
votes
1answer
520 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 java.util.Scanner; ...
-1
votes
2answers
334 views

Simplifying Fractions With java

Hey guys I am working on a SW here I am kinda in need of help, you see we need to make a method where we are gonna simplify fractions. any idea how? here's my code as of now (don't mind the dvalue ...
-3
votes
3answers
361 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) { ...