Difference between revisions of "OOP344 201314-Anonymous"

From CDOT Wiki
Jump to: navigation, search
(Team Members)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
<html>
+
{{OOP344 Index | 20131}}
<hr>
+
== Anonymous (14) ==
<br>
+
*Github:https://github.com/Seneca-OOP344/1-NIU
<p>This is a paragraph</p>
+
 
</html>
+
 
 +
 
 +
== Announcement ==
 +
 
 +
== Programming Style ==
 +
'''1. Indentation'''
 +
* Two spaces or half a tab
 +
 
 +
 
 +
 
 +
'''2. Blocks'''
 +
<syntaxhighlight lang="cpp">
 +
if(something){
 +
 
 +
  abc = xyz;
 +
  while(abc == 0){
 +
 
 +
    printf("What is this?\n");
 +
  }
 +
    return abc;
 +
 
 +
}
 +
</syntaxhighlight>
 +
 
 +
 
 +
 
 +
'''3. Variable Naming'''
 +
 
 +
<syntaxhighlight lang="cpp">
 +
int main()
 +
{
 +
    int a = 1;
 +
    char* book_names;
 +
    return 0;
 +
}
 +
 
 +
class _foo()
 +
 
 +
int foo();
 +
 
 +
int foo(char id,int x){
 +
 
 +
  _id=id;
 +
 
 +
}
 +
</syntaxhighlight>
 +
 
 +
== Team Members ==
 +
{| class="wikitable sortable" border="1" cellpadding="5"
 +
|+ OOP344 - NIU
 +
! First Name !! Last Name !! Team Name !! Section !! Seneca Id !! wiki id !!  IRC nick !! GITHUB ID !! Blog URL
 +
|-
 +
|[[User:Peter Anthony Veri|Peter]]||Veri||[[N/A|Anonymous]]||A||[mailto:paveri@myseneca.ca?subject=oop344 paveri]||[[Special:Contributions/Peter Anthony Veri|Peter Veri]]||Peter_Veri||peter_veri|| [http://peterveri.blogspot.ca/ Peter's Blog]
 +
|-
 +
|[[User:Nicholas Robert Kemp|Nick]]||Kemp||[[N/A|Anonymous]]||A||[mailto:nrkemp@myseneca.ca?subject=oop344 nrkemp]||[[Special:Contributions/Nicholas Robert Kemp|Nicholas Robert Kemp]]||nrkemper||nrkemper||
 +
|-
 +
|[[User:Nathan Shane Mohammed|Nathan]]||Mohammed||[[N/A|Anonymous]]||A||[mailto:nsmohammed2@myseneca.ca?subject=oop344 nsmohammed2]||[[Special:Contributions/Nathan Shane Mohammed|Nathan Shane Mohammed]]||nsmohammed||nsmohammed||[http://nsmohammed2.tumblr.com Nate's Blog]
 +
|}
 +
 
 +
== Discussion ==

Latest revision as of 12:20, 22 February 2013


OOP344 | Weekly Schedule | Student List | Teams | Project | Student Resources

Anonymous (14)


Announcement

Programming Style

1. Indentation

  • Two spaces or half a tab


2. Blocks

if(something){

  abc = xyz;
  while(abc == 0){

    printf("What is this?\n");
  }
    return abc;

}


3. Variable Naming

int main()
{
    int a = 1;
    char* book_names;
    return 0;
}

class _foo()

int foo();

int foo(char id,int x){

  _id=id;

}

Team Members

OOP344 - NIU
First Name Last Name Team Name Section Seneca Id wiki id IRC nick GITHUB ID Blog URL
Peter Veri Anonymous A paveri Peter Veri Peter_Veri peter_veri Peter's Blog
Nick Kemp Anonymous A nrkemp Nicholas Robert Kemp nrkemper nrkemper
Nathan Mohammed Anonymous A nsmohammed2 Nathan Shane Mohammed nsmohammed nsmohammed Nate's Blog

Discussion