直接赋值就可了。 举例: int a = 12; double b = a; System.out.println(b ); 备注:如果想算出两个int数的除法值,必须先把数据转换成double类型,否则计算结果不准确。
int 可以自动转换 double 数据类型 不需要强制转换