#include <iostream>
using namespace std;
class A
{
public:
void shezhi(int x){i=x;}
int fanhui(){return i;} //这里错了,
private:
int i;
};
int main()
{
int y;
cout<<"请输入一个数值\n";
cin>>y;
A a;
a.shezhi(y);
cout<<"您输入的数字是:";
a.fanhui();
return 0;
}
不知道为什么错了,
为什么错了啊?