Difference between revisions of "Code Hunters"

From CDOT Wiki
Jump to: navigation, search
(Project Marking Percentage)
(Coding Rules)
Line 55: Line 55:
 
<pre>
 
<pre>
 
int main(){
 
int main(){
int var;  //All variables declared with own type
+
  int var;  //All variables declared with own type
int* var2;  //asterisk on pointer type
+
  int* var2;  //asterisk on pointer type
  
if(...){
+
  if(...){
  var = 0;  //three spaces for indentation, check tab length in your editor
+
      var = 0;  //three spaces for indentation, check tab length in your editor
  }  //closing brace lined up with last line in block, brace gets own line
+
      }  //closing brace lined up with last line in block, brace gets own line
else var = 1;
+
  else var = 1;
  
 
}  //comment end of functions and long code blocks
 
}  //comment end of functions and long code blocks

Revision as of 18:08, 19 October 2012

Team Name (Code Hunters)

Project Marking Percentage

  • due immediately

Group work:      45%        (25 <= xx <= 50)
Individual work: 55% +      (50 <= xx <= 75) 
-------------------------
Total           100%

Repository

  • repo Github id:

Team Members

Code Hunters Members
First Name Last Name Section Seneca Id GITHUB ID wiki id IRC nick Blog URL
Steven (Szu-Han) Chen B sschen4 chensteven chensteven chensteven Steven's Blog
Joshua Lane B jlane4 jlane4 Joshua Lane jlane4 Joshua Lane oop344
Bo Liu B bliu54 bobliuf Bo Liu bobliuf Boliu's blog
Stanislav Yeshchenko B syeshchenko syeshchenko Stanislav Yeshchenko stan_seneca Stan's OOP344 blog
Yun Yang B yyang154 hamumu Yun Yang hamumu yun's oop344

Issues and Status

Issue description and/or number (1)

  • Assigned to: FULLNAME
  • Code review by: FULLNAME
  • Status:
    (being developed/pull request/being reviewed/pushed to master)
  • comments:

Issue description and/or number (2)

  • Assigned to: FULLNAME
  • Code review by: FULLNAME
  • Status:
    (being developed/pull request/being reviewed/pushed to master)
  • comments:

Coding Rules

int main(){
   int var;   //All variables declared with own type
   int* var2;   //asterisk on pointer type

   if(...){
      var = 0;   //three spaces for indentation, check tab length in your editor
      }   //closing brace lined up with last line in block, brace gets own line
   else var = 1;

}   //comment end of functions and long code blocks

meetings

  • latest will be on top
  1. topic and date1
  2. topic and date2

discussions