Lets see how many ways we can count to 10 in ANY programming language. No two ways in one language should be posted.
|
|
|||
|
closed as not a real question by Gamecat, TheTXI, krosenvold, yesraaj, Mehrdad Afshari Mar 14 at 18:45 |
|
|
"English"
Maybe this is isn't what stack overflow is meant for... |
||
|
|
|
|
C#
|
||
|
|
|
Powershell
|
|||
|
|
|
almost all c like languages |
||
|
|
|
|
C++ for (int i = 1; i <= 10; i++) {cout << i << endl;} int i = 1; while (i <= 10) {cout << i++ << endl;} |
||
|
|
