类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)+a.fun(2.0)后的s值为13。
A、正确
B、错误