show/hide this revision's text 2 added 4 characters in body

66 bytes characters of Windows cmd.exe batch language (Win2K or later , only):

set r=1
for /l %%i in (1,1,%1) do call set/a r=%%r%%*%%i
echo %r%

The recursive version was shaping up to be much larger.

    Post Made Community Wiki by Community
show/hide this revision's text 1

66 bytes of Windows cmd.exe batch language (Win2K or later, only):

set r=1
for /l %%i in (1,1,%1) do call set/a r=%%r%%*%%i
echo %r%

The recursive version was shaping up to be much larger.