int i = 7; float x = 0.5; // The constant value is converted from double to float. i = x; // The value of x is converted from float to int. x += 2.5; // Before ...
確定! 回上一頁