damyan used 196 tokens and was given a grsde of A. *
Alvaro used 201 tokens and was given a grade of A. *
jgbauman used 235 tokens and was given a grade of A. *
Corsix used 262 tokens and was given a grade of B. **
Beer Hunter used 270 tokens and was given a grade of B. **
Bladesniper used 293 tokens and was given a grade of B. **
Dante Shamest used 397 tokens and was given a grade of C.
exomo used 402 tokens and was given a grade of C.
schloob used unknown (400 - 500) tokens and was given a grade of D.
Reddyx used 492 tokens and was given a grade of D.
Syn used 698 tokens was was given a grade of E.
Kybo_Ren has withdrawn (was 850+) and was given a grade of E.
* an expert - can only enter for fun (classed as 250- tokens)
** an intermediate coder - can only enter for fun (classed as 251 - 350 tokens)
For those of you who need some help:
- Code: Select all
// What you should do:
int main(...)
{
...
return 0;
}
// But to save tokens:
void main()
{
}
- Code: Select all
// NO:
if(fred == bob)
return true;
else
return false;
// YES:
if(fred == bob)
return true;
return false;
// YES YES:
return (fred == bob ? true : false);
// YES YES YES :
return (fred == bob);
