1
vote
6answers
73 views

How to store three small numbers into one double?

I have int A, B, C. And A is in range 0-9999, B is 0-99, C is 0-99. Because the function must return only one double, I think of putting them all into one number. Otherwise I need to call function ...
2
votes
4answers
83 views

Strange behavior of floor()

I develop a c++ app (Windows 7, 64 Bit, VS 2008) where the following formula is used (all vars are of type double): mValue = floor(mValue/mStepping)*mStepping; The idea is to shorten a number to a ...
0
votes
4answers
38 views

Java - unexpected result when rounding a double/float to 2 decimals

I encounter a problem when round a double to 2 decimals. I know this questions have been asked in many places. But my question is slightly different and I cannot find it in other places. So far as I ...
-4
votes
1answer
59 views

Calculate from string [closed]

I Have string from config file eg: '((#/@)*10)*$/x' In code I must replace all that symbols (@,#,$,x) to some int from code. eg: '((100/30)*10)*3/1' And calculate it. Must also works with powers. ...
1
vote
3answers
53 views

Randomize when something happens

I have implemented a power up in my game and I want it to have an 10% chance to apply to the player when it kills a zombie. I have tried using this code every time the players bullet hits an zombie, ...
-1
votes
3answers
133 views

Basic C Program, Babylonian Algorithm

I'm new to the C language and am trying to do a lab tutorial that we were given at uni. We've been asked to do the following: Task 1. The Babylonian algorithm to compute the square root of a number ...
0
votes
3answers
87 views

How do I check if a double with decimals is divisible?

I'm trying to test if a number is cleanly divisible (no remainders) by another. If I compare it against an int, it works correctly: NSTimeInterval timeElapsed = // a double goes here // round to 3 ...
4
votes
2answers
108 views

Truncating Double to 2 decimal places?

I know this question is repeated alot, but please have a look at the statement first than mark it already answered :) For truncating the double values 2 decimal places I use two ways which are mostly ...
2
votes
2answers
107 views

Java: Math.random() Max Value (double just less than 1)

I've been a little curious about this. Math.random() gives a value in the range [0.0,1.0). So what might the largest value it can give be? In other words, what is the closest double value to 1.0 that ...
1
vote
1answer
86 views

C# which numeric type for a math application?

I write an interval analysis C# application so I have to handle very large or small numbers. I think double is a very good data type (because the floating-point arithmetic). User can define any ...
0
votes
2answers
71 views

Unusual format to simple math method in Java [closed]

I am writing a simple converter Java Android application and I am having some trouble with the output I am receiving from one conversion. My input is 0.508; converting from meters to km. The value I ...
-1
votes
3answers
130 views

Using Math.floor on a double variable won't work. Java (Using Eclipse) [closed]

So basically I tried 2 things. I'll gives you the codes for them: double number; Scanner input = new Scanner(System.in); System.out.println("Name a number!"); number = input.nextDouble(); number = ...
-2
votes
2answers
128 views

dividing a small number by a larger giving me 0.0

I am doing a program that calculates radio activity at a previous point in time based on measured radioactivity. However if the half-life is very large compared with the elapsed time I get a 0.00 as ...
0
votes
6answers
207 views

How to print output in java

I have this simple problem I'm trying to do. I'm trying to write a program that doubles these five numbers. Then I want to compute the average of these numbers and print them out. The code runs with ...
1
vote
2answers
149 views

Getting wrong answer in double arithmetic in Java [duplicate]

Possible Duplicate: Double calculation producing odd result I'm writing a program in Java that deals with a lot of double arithmetic. I eventually get to the point where I need to add ...
-1
votes
1answer
40 views

Adding together vector array functions

This code works as intended, giving me the number from these 10 input fields. Now, I want them all added together to one number. (all the miTimesFrac results.) Any really effective way of doing this? ...
0
votes
1answer
79 views

Multiplying array doubles

This code returns error 'Invalid operands to binary expressions double and double' double staticDouble[3] = {1,2,3}; double dynamicDouble[3] = {a, b, c}; double resultTest = static * dynamic; ...
1
vote
1answer
64 views

Predicting the sum of two doubles [duplicate]

Possible Duplicate: Is JavaScript’s Floating-Point Math Broken? This is going to be a very rudimentary comp-sci question. Consider the following C# (the same holds true for JS, I assume ...
2
votes
7answers
218 views

How to determine whether a double variable has integer value?

I'm trying to find possible integer roots of a quadratic equation with Java. Here is a snippet from my code: double sqrtDiscriminant = Math.sqrt(b * b - 4 * a * c); double root1 = ((-1.0 * b) - ...
0
votes
1answer
97 views

How do I accept either a string or a double as input? C++

okay. So I wrote a formula calculator a while ago that does many different functions. I opened it today and noticed that every time I accessed a certain function and then finished that function, the ...
-3
votes
3answers
128 views

2 / 4 = 0.0 in java? [duplicate]

Possible Duplicate: Why does the division of two integers return 0.0 in Java? I have some very confusing problem.. I want to calculate some stuff and after some debugging I saw that java ...
-1
votes
3answers
142 views

Java iterator in double value

I am trying to iterate the value of I from 1 to 0 or from 0 to 1. But I have got some problem. Please check the following codes: double i = 1.0; loop{ // Just use a loop to iterate the i. This is ...
2
votes
2answers
135 views

Rounding error with pi

I am trying to make a sequence of code that calculates the volume of a cone based on a user input height and radius (see below). My problem is that the answer comes out wrong (but not by a long way). ...
0
votes
7answers
627 views

Java Double/Integer

int a = 1; int b = 10; int c = 3; int d = (1/10)*3 System.out.println(d) Result: 0 How do i make this Calculation work ? and round up or down ? It should be: (1/10)*3 = 0.1 * 3 = 0.3 = 0 and ...
1
vote
2answers
713 views

How to check if number is divisible in c#?

I need to know how to do this procedure. calculation1: 1/4 = 0,25 calculation2: 1/8 = 0,125 calculation3: 47/183 = 0,25683060109289617486338797814207...... calculation4: 58/889 = ...
2
votes
3answers
81 views

Maths error in PHP - number truncated?

I have the number 2.50 stored in a variable called $price which I can pass to a function and it recognizes the value 2.50 however when I try and multiply it with 2 I get the answer 4. I assumed PHP is ...
-1
votes
3answers
181 views

double and accuracy

Using long double I get 18/19 = 0.947368421052631578..., and 947368421052631578 is the repeating decimal. Using double I get 0.947368421052631526... However, the former is correct. Why such an ...
3
votes
2answers
291 views

Multiplying doubles in java?

I'm trying to multiply the same double (square it) but the number comes out wrong. When i display the double by itself the number is correct but when i multiply it by itself it comes up with the wrong ...
3
votes
5answers
152 views

Dividing Math with C#

This has a potentially simple answer but I can't figure it out - double Result = 1 / 12; returns 0, while double Result2 = 24 / 12; return 2 What's going on and how can I fix it?
1
vote
1answer
310 views

Objective C Maths

How would I go about calculating a compound interest rate, so far I have: double principal = [[principalLabel text] doubleValue]; NSLog(@"Principal: %lf",principal); double years = [[yearsLabel ...
1
vote
1answer
100 views

Syntax for math equation is not correct

I'm trying to convert XYZ values to LAB* using the formula available here. The problem is, when I go through the formula - the output for the three variables var_X,var_Y and var_Z is always 1.00. ...
0
votes
2answers
475 views

C# double addition - strange behaviour

public static void Main() { Dictionary<string, double> values = new Dictionary<string, double>(); values.Add("a", 0.002); values.Add("b", 0.003); values.Add("c", 0.012); ...
-2
votes
1answer
386 views

Round double to top - C#

I have a double number like 1,01 and I want to make it 2 when it has a oversupply?? double number1 = 1,01 double number2 = 1,1 double number3 = 1,00000001 these are must be 2
3
votes
4answers
130 views

.NET implementation: Double conversion in Math.Min(float, float)

Why does .Net implement the Math.Min(float, float) function like so: public static float Min(float val1, float val2) { if ((double) val1 < (double) val2 || float.IsNaN(val1)) return val1; ...
4
votes
6answers
2k views

Why is the division result between two integers truncated?

All experienced programmers in C# (I think this comes from C) are used to cast on of the integers in a division to get the decimal / double / float result instead of the int (the real result ...
1
vote
2answers
225 views

Unpredictable double [duplicate]

Possible Duplicate: Double precision problems on .NET Double calculation producing odd result I know that internal represantation of double value 0.2 is something like 0.199999. But the ...
0
votes
1answer
747 views

Integer division always zero [duplicate]

Possible Duplicate: C programming division probably my question is very simple and stupid. I would like to store the value of a division, in particular 1 / x where x is a integer value. ...
0
votes
3answers
4k views

Round Up a double to int

I have a number ("double") from int/int (such as 10/3). What's the best way to Approximation by Excess and convert it to int on C#?
3
votes
2answers
90 views

trouble with double truncation and math in C

Im making a functions that fits balls into boxes. the code that computes the number of balls that can fit on each side of the box is below. Assume that the balls fit together as if they were cubes. I ...
0
votes
3answers
282 views

Calculating a value and rounding to nearest whole number

I'm trying to calculate a number below. I keep getting 0 when it should be something like 83.12454. I believe i want a Double variable type. What am I doing wrong below? Once I get the value I need ...
3
votes
4answers
1k views

How to round double values but keep trailing zeros

In C# I want a function that rounds a given double to a given amount of decimals. I always want my function to return a value (which can be a string) with the given amount of decimals. If necessary, ...
0
votes
3answers
294 views

Implementing a multiplier in a statistician class

I am working on a programming assignment for my data structures class and we are working on making a statistician class. One of the functions that we have to have is to be able to take a statistician ...
8
votes
5answers
228 views

Why is the last number wrong?

Why is only the last number wrong in the output this code: public class Test { public static void main(String[] args) { System.out.println("Hello world"); System.out.println("I ...
5
votes
3answers
9k views

How to get the numbers after the decimal point? (java)

double d = 4.321562; Is there an easy way to extract the 0.321562 on it's own from d? I tried looking in the math class but no luck. If this can be done without converting to string or casting to ...
10
votes
4answers
3k 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; ...
7
votes
5answers
3k views

Math operations using System.Decimal in C#?

I need to be able to use the standard math functions on decimal numbers. Accuracy is very important. Double is not an acceptable substitution. Are there any libraries that allow for this? edit I am ...
1
vote
3answers
2k views

Doing Math with Objective C Double

I've got this loop in Objective C and need some coaching to get it to work out. I'm trying to calculate the height of four bars based on the numbers stored as strings in array, array. biggestTotal is ...
0
votes
6answers
298 views

Why is my math with Doubles coming out wrong?

This is how I am creating q Double q = ((r * (i/5)) + y); at this point the values of the other variables are r = 3.470694142992069E-5 i = 1 y = -116.30237535361584 but q = -116.30237535361584 ...
0
votes
2answers
375 views

10 digits android

I am Writing a Android calculator and would like to limit the number of charicters that are outputted to 10 eg: 1: ans = 1.23456789101 should show 1.23456789 2: ans = 1234.56789101 should show ...
9
votes
7answers
2k views

Are arithmetic operations on double variables with integer values exact?

Let's say I've got two integer values stored in double variables, e. g.: double x = 100.0; double y = 7.0; May I safely assume that any arithmetic operation on these two double variables that would ...

1 2