(New page: == Summing Numbers == Some text will go here. here is a link to [http://en.wikipedia.org/wiki/Summation wikipedia] <source lang="cpp"> class foo { }; int main() { for(int i = 0; i <...) |
(readded the broken image link since this is more of a tutorial page) |
||
(7 intermediate revisions by the same user not shown) | |||
Line 13: | Line 13: | ||
int main() { | int main() { | ||
for(int i = 0; i < 100; ++i) { | for(int i = 0; i < 100; ++i) { | ||
− | + | printf("%d", i); | |
} | } | ||
} | } | ||
Line 20: | Line 20: | ||
<math>\sum_{i=1}^{N}{i} = \frac{i(i+1)}{2}</math> | <math>\sum_{i=1}^{N}{i} = \frac{i(i+1)}{2}</math> | ||
+ | |||
[[Image:Example.jpg]] | [[Image:Example.jpg]] | ||
+ | |||
+ | ---- | ||
+ | [https://kiwi.ecn.purdue.edu/rhea/index.php/2009_Fall_ECE_462_Lu Back to ECE462] |
Latest revision as of 05:27, 28 August 2009
Summing Numbers
Some text will go here.
here is a link to wikipedia
class foo { }; int main() { for(int i = 0; i < 100; ++i) { printf("%d", i); } }
$ \sum_{i=1}^{N}{i} = \frac{i(i+1)}{2} $