Changes

Jump to: navigation, search

Team Mighty Morphin Coding Rangers - OOP344

317 bytes added, 20:04, 26 January 2010
m
Coding Style
<ul>
<li>use single letters (like i, j, a, or v) for counters only; </li>
<li>one variable per type {better off per line} even if it's the same type (<b>no</b> using commas to share a variable during declaration);</li><code> Eg. correct int i; int j; int k; Eg. wrong int i,j,k; Eg. so/so int i; int j; int k;</code> <li>assign the variable a name that best describes what it is used for (but please don't make it too long);</li>
<li>and separate words with caps.
<br/> Eg. no<b>O</b>f<b>O</b>rders, not no<b>o</b>f<b>o</b>rders
1
edit

Navigation menu