#include < iostream. h >
class test{
private: int x;y;
public: voicl f( int a,int b) { x = a;y = b; }
int max( ) { return(x > y) ? x:y; }
};
main( ) {
test a;
a. f( 1 ,3) ;
cout << a. max( ) << endl;
}
INT X;Y; X定义时使用了分号;,Y没有定义。
#include < iostream. h >
class test{
private: int x;y;
public: voicl f( int a,int b) { x = a;y = b; }
int max( ) { return(x > y) ? x:y; }
};
main( ) {
test a;
a. f( 1 ,3) ;
cout << a. max( ) << e
#include < iostream. h >
class test{
private: int x;y;
public: voicl f( int a,int b) { x = a;y = b; }
int max( ) { return(x > y) ? x:y; }
};
main( ) {
test a;
a. f( 1 ,3) ;
cout << a. max( ) << endl;
}
INT X;Y; X定义时使用了分号;,Y没有定义。