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.
|
float test(int a, int b) {
|
|
if (a+b==1){
|
|
return a+b;
|
|
}
|
|
return 0.1;
|
|
}
|
|
int main() {
|
|
float c = test(1,1);
|
|
return 0;
|
|
}
|
|
// Func Return Type Not Match 返回类型不匹配
|