You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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;
|
|
}
|