- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
class A
{
public:
int Left;
int Top;
int Right;
int Bottom;
public:
A ()
{
Left = Top = Right = Bottom = 10;
}
A (int L, int T, int R, int B)
{
L = Left;
T = Top;
R = Right;
B = Bottom;
}
};