Tagged Questions
2
votes
3answers
83 views
Why don't integers get lifted to doubles when treated as objects and comparing?
I ran across this interesting situation today:
var a = new HashSet<Object> { 1.0, 2.0, 3.0 };
a.Contains(1); //False
a.Contains(1.0); //True
Of course, this was just a generic version ...
0
votes
0answers
15 views
MS Access get int from textfield
I have a form and I need to get integer value from textfield.
Dim year As Integer
year = Val(TextField.Value)
I've tried to use that, but Val returns double, so I need either function which ...
0
votes
4answers
46 views
Unexpected result while dividing int by int and storing result into double [duplicate]
I'm having a weird problem.
This code simply divides an int by another int, stores result in a double variable and prints it:
int a = 200;
int b = 557;
double divisionResult = a / b;
...
2
votes
7answers
111 views
java program using int and double
I have written a simple Java program as shown here:
public class Test {
public static void main(String[] args) {
int i1 =2;
int i2=5;
double d = 3 + i1/i2 +2;
...
0
votes
3answers
96 views
Intro to Java - What's wrong?
First of all, I'm very, very new. Any help is appreciated. So, I was able to get this to run when everything was int, but for some reason changing it to double, I can only input the first value and it ...
0
votes
2answers
30 views
Double getting converted to Int WPF C#
I am working on a WPF Application using C#. My situation is such that I need the absoluted value of a double and then display it in the a label, for ex, if I have
double d=-17.00;
...
1
vote
2answers
45 views
setting enemy movement speed to less than 1
In the game that I'm creating I want the zombies to be twice as slow as the player put I don't want to set the players movement speed to 2 because it moves way to fast then. This is the code that ...
0
votes
2answers
227 views
Set datetimepicker value using hour and minute int Variables
got a problem.
I want to convert two doubles to a time format (HH:mm)(2.5 equals to 02:30 for example). I got a hour int variable and minute int variable. The problem is that I don't know what to do ...
3
votes
0answers
102 views
Why does dividing a double by zero throws no exception, while dividing a int does? [duplicate]
When we divide a double by zero it doesn't throw any exception but successfully map to the infinity. But not in the case of int.
Despite the fact that both int and double have got an upper limit to ...
1
vote
5answers
75 views
Basic Java: Method to tell if a double is an integer
I'm a beginning programmer and I need a method that returns whether or not a double is an integer. The problem occurs when the number is too big for an int to hold.
Here's what I have:
private ...
-2
votes
1answer
97 views
How to convert some long double to long int in c?
I'm trying to convert a double type variable to a long long int. The only way I know to do it is by casting. Althoulg it seems ok, I'm not receiving the number I wanted.
I post the code piece ...
1
vote
3answers
191 views
how to convert int part and fraction part of a double into two integers in arduino [duplicate]
How to convert in Arduino or C for example 30.8365146 into two integers: 30 and 8365146.
This problem faces me when i try to send gps data via xbee series 1 which don't allow to transmit fraction ...
0
votes
2answers
92 views
Taking input for arrays
In doing a project for my computer science class, I came upon a problem with arrays. Basically, I have to take an input from the user for the number of years they want to input data for. I then have ...
5
votes
5answers
87 views
Error With Using (int) and (double) together to Cut off Decimals
When I am using (int) with (double) some times it is not working correct.
Look At The PHP Code Example:
I Need To LEAVE 2 Decimals And REMOVE Other...
I Know number_format(); function But I Cannot ...
1
vote
3answers
88 views
Can I convert 0.16, 0.32, etc. into an integer properly (16, 32, etc.) in C?
I'm trying to convert the decimal portion of a double 247.32
into an int 32. I only need two decimal places.
I can cast the double as int and subtract from the double to get .32000
I can then ...
0
votes
1answer
61 views
Unexpected result converting double to int
I was trying to cast a double value to int and I got a different value.
I have this code:
double double100times = 240;
int a=[[NSNumber numberWithDouble:double100times] intValue];
and the value I ...
0
votes
1answer
68 views
Value changing when converting from double to int
Basic question, the code is very large, but my issue is, at it's core, basic :
I have a double value known as variable, and if I check it with cout << variable, it will give me, for example, ...
0
votes
2answers
71 views
Scar Divi Float or Double to Int
Scar Divi Float or Double to Int. How I pass a Float/Double to Integer?
Here's the code. I'm trying to Find the bitmap and click on the center, the problem is when I try to divide the x or y to find ...
1
vote
6answers
110 views
Java: int and double take 0 millisecons to do simple calculation for 100 million times
I am doing some simple tests with double, like this:
startTime = System.currentTimeMillis();
for (int i = 0; i < 100_000_000; i++)
{
doubleCalcTest();
}
endTime = System.currentTimeMillis(); ...
3
votes
4answers
109 views
Double is not converting to an int
This code I have written to convert double into int getting an exception.
Exception in thread "main" java.lang.Error: Unresolved compilation problem:
Cannot cast from Double to int
This is my code
...
0
votes
1answer
35 views
How to create a numeric array of elements in associative array by type
How can i create a new array from elements in associative array in the way that if values is integer then put that value on first place in a new array,on the second place put double,on the third ...
0
votes
1answer
77 views
Array Project int double mismatch
I have an array project that I need a bit of help with. I have most of it done but I've run into a couple problems towards the end. I have the ability to put in Student Names, Grades, and then have ...
0
votes
3answers
308 views
Converting KB to MB, GB, TB dynamicaly
public String size(int size){
String hrSize = "";
int k = size;
double m = size/1024;
double g = size/1048576;
double t = size/1073741824;
DecimalFormat dec = new ...
1
vote
1answer
100 views
Double array only stores ints
I have this code here that I think should work, and it does! except for the fact that though I've declared a pointer to an array of type double, it always stores int, and I don't know why.
first, I ...
0
votes
4answers
515 views
Is it valid to compare a double with an int in java?
Utilities.getDistance(uni, enemyuni) <= uni.getAttackRange()
Utilities.getDistance returns double and getAttackRange returns int. The above code is part of an if statement and it needs to be ...
-2
votes
7answers
160 views
Casting a double as an int, does it round or just strip digits?
Doing some calculations with doubles which then need to be cast to an int. So i have a quick question, when casting a double say 7.5 to an int, it will return 7.
Is this a product of rounding or just ...
0
votes
0answers
87 views
Python Casting Float Addition to int
I have the following Class definition for a rect:
class Rect(object):
def __init__(self, *args):
# Again with the weird non-pythonic mess
if len(args) == 1: # copy another rect
...
2
votes
5answers
166 views
sqrt taking int in c
I am programming in the c language on mac os x. I am using sqrt, from math.h, function like this:
int start = Data -> start_number;
double localSum;
for (start; start <= end; start++) {
...
5
votes
1answer
114 views
How two recursive numbers stored as doubles sum up to an integer
This is just out of curiosity. If I store two recursive numbers or irrational numbers in two doubles and then perform some operations, how does it produce actual result?
For example,
double d1=7d/3;
...
0
votes
3answers
100 views
double to int (or long, long long) conversion sometimes is not good
I am trying to convert quite big double number to int (or long or long long), but have some difficulties. Almost always it converts good, but not sometimes:
My code:
double price = 12345678.900000;
...
1
vote
4answers
430 views
C++: double vs unsigned int. Why it runs like this?
I try to multiply three number but I get a strange result. Why I get so different results?
unsigned int a = 7;
unsigned int b = 8;
double d1 = -2 * a * b;
double d2 = -2 * (double) a * (double) b;
...
2
votes
3answers
103 views
verifying value equals exactly 0.00
I'm looking to calculate if a value of a variable in java is equal to 0.00 which is currently defined as a big decimal .
I have tried a variety of ways to do this including:
tempListPrice.getAmount() ...
0
votes
4answers
110 views
double is an integer, difficulty parsing
This works perfectly, except that when the user enters an number with a decimal (e.g. 2.3), it returns the same statement ("Number must be an integer").
I am trying to say if it is not an int OR a ...
3
votes
3answers
101 views
Why do I get different results only 1% of the time?
I am trying to truncate everything past the hundredths decimal. (13.4396 would be 13.43) Sholdn't it always or never work?
I have this formula that works 99%:
input = (( (double) ((int)(orgInput ...
0
votes
2answers
274 views
Objective-C: int can´t be NAN?
It seems that a int in Objective-C can't be NAN.
This comparision returns false.
int i = NAN;
NSLog(@"isNan: %@", (isnan(i)) ? @"YES" : @"NO");
Is there any way to set an int to NAN, or do i have ...
1
vote
7answers
472 views
Unexpected result in long/int division
I have values like this:
long millis = 11400000;
int consta = 86400000;
double res = millis/consta;
The question is: why res equals 0.0 (instead of ca. 0.131944)? It's stored in double so there ...
0
votes
3answers
111 views
Double -> Extract Whole Numbers
int a = 4;
int b = 3;
int c = 10;
int d1 =(int) (double)(a*b)/c;
double d2 =(double)(a*b)/c;
System.out.println("d1: " + d1);
System.out.println("d2: " + d2);
Result: d1: 1 and d2: 1.2
How do ...
0
votes
7answers
631 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
...
3
votes
2answers
2k views
MATLAB automatically converts double to int without explicit cast
I would let the output speak for itself:
>> numFiles, meanTangle, sdTangle
numFiles =
526
meanTangle =
0.4405
sdTangle =
0.1285
Now, when I create a vector out of ...
-1
votes
1answer
88 views
why isn't int converted to double in printf? [duplicate]
Possible Duplicate:
How is conversion of float/double to int handled in printf?
main()
{
printf("%f",1);
}
The output I expected was 1.000000,i.e the int 1 being upcasted to double ...
0
votes
3answers
121 views
Converting a list of strings to ints (or doubles) in Python
I have a lots of list of strings that look similar to this:
list = ['4', '-5', '5.763', '6.423', '-5', '-6.77', '10']
I want to convert it to a list of ints (or doubles) but the - keeps producing ...
-7
votes
2answers
200 views
What is the result of adding a int to a double in Java? [closed]
please tell me the result when a= 5 b= 2.4.
thank you
public class Question {
//Adding return an int
public int adding1(int a, double b) {
return a+b;
}
...
7
votes
5answers
1k views
Converting a double to an int in C#
In our code we have a double that we need to convert to an int.
double score = 8.6;
int i1 = Convert.ToInt32(score);
int i2 = (int)score;
Can anyone explain me why i1 != i2?
The result that I get ...
2
votes
4answers
276 views
Parsing a String with an Exponent (Java)
I have a string similar to: 7.6E+7.
My question is simple: How do I turn this into its corresponding number: 76000000?
I have tried using substring to isolate the E+7 part, then parse the 7 part, ...
5
votes
2answers
643 views
Are Java integer-type primitive casts “capped” at the MAX_INT of the casting type?
I was trying to track down some very weird Java behavior. I have a formula that involves a double, but is "guaranteed" to give an integer answer -- specifically, an unsigned 32-bit integer (which, ...
1
vote
1answer
311 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 ...
0
votes
2answers
405 views
The call is ambiguous between the following methods or properties (decimal and double, with rounding)
My program cannot determine whether to execute Math.Round as a decimal or a double, but I have no idea how to fix this... Here is my code, though the second to last line is what I am concerned with.
...
0
votes
6answers
621 views
casting between short,int,long,double,float in Java
As i understand, when you cast between 2 of these types with an arithmetic operation in Java, for example double + int, the result will be as the bigger type (meaning in this example, the result will ...
3
votes
4answers
368 views
C# int- or object-to-double casting error explanation
The below code fails at the last assignment:
static void Main(string[] args)
{
int a = 5;
object b = 5;
System.Diagnostics.Debug.Assert( a is int && b is int );
double x = ...
0
votes
1answer
85 views
Keep program from accepting double value when int is necessary
Scanner input = new Scanner( System.in );
System.out.println("Input the minimum necessary word count in a single article!");
int minArticleLength1 = input.nextInt();
while (minArticleLength1<0){
...

