程序有错误 麻烦大佬帮忙看一下是哪里错了 谢谢🙏
#include <iostream.h>class Test
{ private:
int value;
public:
void Test(int a) {value=a;}
int Max(int x,int y){return x>y? x:y;}
int Max(int x,int y,int z=0)
{ if(x>y) return x>z? x:z;
else return y>z? y:z;
}
~Test(int a){value=0;}
};
void main()
{ Test s;
s.Max(10,20);
}