public static void main(String[] args){
double d;
d=1.10*1.10;
System.out.println(d);
}
为什么输出的结果为1.2100000000000002
而C++中是1.21