1
edit
Changes
→Programming Style
== Programming Style ==
'''1. Indentation'''
* Four spaces or a tab
'''2. Blocks'''
<syntaxhighlight lang="cpp">
if(something)
{
abc = xyz;
while(abc == 0)
{
printf("What is this?\n");
}
return abc;
}
</syntaxhighlight>
== Team Members ==