int main() { float a = 3.14; float b = 2.0; float c = a + b; int d = 10; float e = d + a; // 隐式转换 int -> float return 0; }