练习题中为什么price 不可以用float类型?
float型的常量后要加上f,即如float price=120.5f;
如果float price=120.5;则系统默认为120.5为double型的而double不能自动转化为float型所以报错