Open main menu

CDOT Wiki β

Changes

Team Excellence - oop344 20113 Code Standards

205 bytes removed, 23:53, 18 October 2011
Class Standards
== If Statement ==
'''Sandip:'''
I have a proposal. How about doing it like this:
<syntaxhighlight lang="cpp">
if (condition)
{
stuff;
}
else if (condition)
{
stuff;
}
else
{
stuff;
}
</syntaxhighlight>
'''Dzmitry:'''
if (condition){
stuff;
}else if (condition){
stuff;
}else{
stuff;
}
== For Loop ==
<syntaxhighlight lang="cpp">
for (i=0; condition; i++){
stuff;
}
== While Loop ==
<syntaxhighlight lang="cpp">
while (true){
stuff;
}
**/
#ifndef _CLASS__INITIAL_CLASS_#define _CLASS__INITIAL_CLASS_
class CLASS {
int a_a; int b_b;
public:
/* Again Important Header goes here */
if(condition) {
stuffs;
}
/* All Loops */
for(i=0; i<len; i++) {
statements;
}
while(condition) {
statements;
}