载函数?函数重载吗int function(int x,int y){return(x*x+y*y);}float function(float x,float y){return(x*x+y*y);}void main(){function(1,2);function(1.0,2.0);}