Difference between revisions of "OOP344 20131-NIU"
(→Programming Style) |
|||
(3 intermediate revisions by 2 users not shown) | |||
Line 38: | Line 38: | ||
return 0; | return 0; | ||
} | } | ||
+ | </syntaxhighlight> | ||
+ | |||
+ | |||
+ | |||
+ | |||
+ | '''4. Github Command''' | ||
+ | |||
+ | <syntaxhighlight lang="cpp"> | ||
+ | 1.git branch (branch name); | ||
+ | 2.git checkout (brach name); | ||
+ | 3.git add ( file name); | ||
+ | 4.git commit -m "(messages)" | ||
+ | 5.git push --set-upstream origin (branch name) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Line 47: | Line 60: | ||
|[[User:Xin Li|Xin]]||Li||[[N/A|NIU]]||A||[mailto:xli206@myseneca.ca?subject=oop344 xli206]||[[Special:Contributions/Xin Li|Xin Li]]||Xin12||steven5736|| [http://xin12.blogspot.ca/ Xin's Blog] | |[[User:Xin Li|Xin]]||Li||[[N/A|NIU]]||A||[mailto:xli206@myseneca.ca?subject=oop344 xli206]||[[Special:Contributions/Xin Li|Xin Li]]||Xin12||steven5736|| [http://xin12.blogspot.ca/ Xin's Blog] | ||
|- | |- | ||
− | + | |[[User:Wei Wang|Wei]]||Wang||[[N/A|NIU]]||A||[mailto:wwang125@myseneca.ca?subject=oop344 wwang125]||[[Special:Contributions/Wei Wang|Wei Wang]]||weiwang||wangwei2009727|| [http://weioop344.wordpress.com// Wei's blog] | |
− | |[[User:Wei Wang|Wei]]||Wang||[[N/A|NIU]]||A||[mailto:wwang125@myseneca.ca?subject=oop344 wwang125]||[[Special:Contributions/Wei Wang|Wei Wang]]||weiwang||wangwei2009727|| [http:// | ||
− | |||
− | |||
|- | |- | ||
− | |||
|[[User:czang1 | Chen]]||Zang||[[N/A|NIU]]||B||[mailto:czang1@learn.senecac.on.ca?subject=oop344 czang1]||[[Special:Contributions/czang1 | czang1]]||Johnson||czang1|| [http://zangchen88.blogspot.com/ Chen's Blog] | |[[User:czang1 | Chen]]||Zang||[[N/A|NIU]]||B||[mailto:czang1@learn.senecac.on.ca?subject=oop344 czang1]||[[Special:Contributions/czang1 | czang1]]||Johnson||czang1|| [http://zangchen88.blogspot.com/ Chen's Blog] | ||
− | + | |- | |
|} | |} | ||
== Discussion == | == Discussion == | ||
+ | |||
+ | When do you have time to make a meeting for discussing these classes. |
Latest revision as of 22:56, 18 March 2013
OOP344 | Weekly Schedule | Student List | Teams | Project | Student Resources
NIU(Team 1)
Announcement
Programming Style
1. Indentation
- Four spaces or 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* bookNames;
char bookId
return 0;
}
4. Github Command
1.git branch (branch name);
2.git checkout (brach name);
3.git add ( file name);
4.git commit -m "(messages)"
5.git push --set-upstream origin (branch name)
Team Members
First Name | Last Name | Team Name | Section | Seneca Id | wiki id | IRC nick | GITHUB ID | Blog URL |
---|---|---|---|---|---|---|---|---|
Xin | Li | NIU | A | xli206 | Xin Li | Xin12 | steven5736 | Xin's Blog |
Wei | Wang | NIU | A | wwang125 | Wei Wang | weiwang | wangwei2009727 | Wei's blog |
Chen | Zang | NIU | B | czang1 | czang1 | Johnson | czang1 | Chen's Blog |
Discussion
When do you have time to make a meeting for discussing these classes.