N'th: Difference between revisions

23 bytes added ,  10 months ago
→‎{{header|MiniScript}}: Fixed 1011, 1012 and 1013, show each range as a separate line
(→‎{{header|MiniScript}}: Fixed 1011, 1012 and 1013, show each range as a separate line)
Line 2,774:
To get the output all on one line, we append it to a list as we go, and then print the list all at once at the end.
 
<syntaxhighlight lang="miniscript">ordinal = function(n)
ordinal = function(n)
if n % 100 > 3 and n %100 < 20 then return n + "th"
if n % 10 == 1 then return n + "st"
if n % 10 == 2 then return n + "nd"
Line 2,782 ⟶ 2,783:
end function
 
out = []
test = function(from, to)
out = []
for i in range(from, to)
out.push ordinal(i)
end for
print out.join
end function
 
Line 2,792 ⟶ 2,794:
test 250, 265
test 1000, 1025
print out.join</syntaxhighlight>
 
{{out}}
<pre>
<pre>0th 1st 2nd 3rd 4th 5th 6th 7th 8th 9th 10th 11th 12th 13th 14th 15th 16th 17th 18th 19th 20th 21st 22nd 23rd 24th 25th 250th 251st 252nd 253rd 254th 255th 256th 257th 258th 259th 260th 261st 262nd 263rd 264th 265th 1000th 1001st 1002nd 1003rd 1004th 1005th 1006th 1007th 1008th 1009th 1010th 1011st 1012nd 1013rd 1014th 1015th 1016th 1017th 1018th 1019th 1020th 1021st 1022nd 1023rd 1024th 1025th</pre>
0th 1st 2nd 3rd 4th 5th 6th 7th 8th 9th 10th 11th 12th 13th 14th 15th 16th 17th 18th 19th 20th 21st 22nd 23rd 24th 25th
250th 251st 252nd 253rd 254th 255th 256th 257th 258th 259th 260th 261st 262nd 263rd 264th 265th
1000th 1001st 1002nd 1003rd 1004th 1005th 1006th 1007th 1008th 1009th 1010th 1011th 1012th 1013th 1014th 1015th 1016th 1017th 1018th 1019th 1020th 1021st 1022nd 1023rd 1024th 1025th
</pre>
 
=={{header|Modula-2}}==
3,021

edits