8 lines
56 B
C++
8 lines
56 B
C++
|
|
class A
|
||
|
|
{
|
||
|
|
public:
|
||
|
|
int x;
|
||
|
|
A(int _x) : x(_x) {
|
||
|
|
}
|
||
|
|
};
|