Changes

Jump to: navigation, search

Team !YOU - OOP344

382 bytes added, 12:59, 25 January 2010
m
Added First Programming Standard
== Team Programming Standards ==
An area for listing our teams programming standards that we will use when constructing the project.Please follow these rules when writing code for this project. This will make it easier for us to help each other and collaborate in the whole process. === Declare only one variable in each line. ===This makes it easier to scan the code and find the type of a variable that you see somewhere else in the code. Do: int a; int b = 0; int c = a; Don't: int a, b = 0, c = a;

Navigation menu