function big(x,y){
if(x>y){
return x;
}if else(x==y){
return 0;
}else{
return y;
}
if....else if....else...
你没有调用
是 else if 不是if else ,你打错了
你需要显示什么?