vote up 0 vote down star

Lets see how many ways we can count to 10 in ANY programming language. No two ways in one language should be posted.

flag
You should probably make this a community WIKI – JaredPar Mar 14 at 18:43

closed as not a real question by Gamecat, TheTXI, krosenvold, yesraaj, Mehrdad Afshari Mar 14 at 18:45

5 Answers

vote up 5 vote down

"English"

1 2 3 4 5 6 7 8 9 10

Maybe this is isn't what stack overflow is meant for...

link|flag
vote up 1 vote down

C#

for (int i = 1; i <= 10; i++)
  Console.WriteLine(i.ToString());
link|flag
Enumerable.Range(1, 10) – Mehrdad Afshari Mar 14 at 18:46
vote up 1 vote down

Powershell

1..10
link|flag
This works in Perl too. – gpojd Mar 14 at 18:46
vote up 1 vote down
for(i = 0; i < 10; i++)

almost all c like languages

link|flag
vote up 0 vote down

C++

for (int i = 1; i <= 10; i++) {cout << i << endl;}

int i = 1; while (i <= 10) {cout << i++ << endl;}

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.