Divisi Java dari 2 angka dengan tempat desimal

int n = 3;
int d = 5;
double v = (double) n / d;
Precious Pelican