Dividing two integers to a double in java

2020-01-29 14:16发布

I can see this is a common problem for new programmers, however I didn't succeed in implementing any of the solution to my code. Basically I want to divide w and v, which must be saved to a double variable. But it prints [0.0, 0.0, ... , 0.0]

public static double density(int[] w, int[] v){
double d = 0;
    for(L = 0; L < w.length; L++){
        d = w[L]  /v[L];
    }
    return d;
}

3条回答
狗以群分
2楼-- · 2020-01-29 15:04

This line here d = w[L] /v[L]; takes place over several steps

d = (int)w[L]  / (int)v[L]
d=(int)(w[L]/v[L])            //the integer result is calculated
d=(double)(int)(w[L]/v[L])    //the integer result is cast to double

In other words the precision is already gone before you cast to double, you need to cast to double first, so

d = ((double)w[L])  / (int)v[L];

This forces java to use double maths the whole way through rather than use integer maths and then cast to double at the end

查看更多
祖国的老花朵
3楼-- · 2020-01-29 15:10

Actaully w[L]/v[L] here both are integer, on division operation it loose precision and trucated to integer value, latter trucated integer is converted to double.

Solution would be convert operand or divisor or both to double, division operaion would produce decimal value.

d = w[L]/(double)v[L];
查看更多
Fickle 薄情
4楼-- · 2020-01-29 15:14

use like following

    d = (double) w[L]  /v[L];
查看更多
登录 后发表回答