![]() |
#2
DG中专生2007-12-07 14:01
|
#include<iostream>
#include<string>
using namespace std;
int main()
{
class a{
public:
bool b(const int c,const int d)
{
return c>b?c:d;
}
}
bool g;
int e=10,f=11;
cout<<g.b(e,f)<<endl;
return 0;
}