类A有如下成员函数:
int A::fun(double x){return (int) x/2;}int A::fun(int x){return x*2;}
设a为类A的对象,在主函数中执行语句int s=a.fun(6.0)+a.fun(2)后的s值为7。
A、正确
B、错误