1
edit
Changes
→Rules to follow: Add some explonation to rules
4. Only use breaks in switch statements
5. Begin each class with #ifndef(we will learn it later)
6. Do not use redundant statements (i.e: if (x != 0) because it same as if(x) )
7. Comment with Very important - we shouldn'/*' example: /* insert comment here */t use TAB for indention. Do not use '//' because that Because size of tab is different in different compilers and code could look messy if to open it different compiler. Lets use in c++ (space instead. And each of us should set up Visual Studio to turn off TAB otherwise we're coding in C)can lose marks.