oChoose descriptive variable names
ostring s; // bad variable names
ostring myMood;
// good variable
names
oint x;
// bad variable names
oint
YearOfBirth; // good variable names
oWhen declare variables for graphic coordinates
oint x1; // left horizontal
oint y1; // top vertical
oint x2; // right horizontal
oint y2; // bottom vertical
oint r; // radius of a circle
n