为什么 double d = (byte) a 的计算结果是 1.0 ? Why does double d = (byte) a compute to 1.0?
int a = 257;
int b = 4;
int c = 3;
int e = 2;
double d = (byte)a + b / c / e;