Jump to content

N'th: Difference between revisions

1,035 bytes added ,  4 years ago
no edit summary
No edit summary
Line 1,794:
END Nth.
</lang>
 
=={{header|Nanoquery}}==
{{trans|Java}}
<lang nanoquery>def ordinalAbbrev(n)
if int(n % 100 / 10) = 1
return "th"
end
 
if n % 10 = 1
return "st"
else if n % 10 = 2
return "nd"
else if n % 10 = 3
return "rd"
else
return "th"
end
end
 
for i in range(0, 25)
print (i + ordinalAbbrev(i) + " ")
end
println
 
for i in range(250, 265)
print (i + ordinalAbbrev(i) + " ")
end
println
 
for i in range(1000, 1025)
print (i + ordinalAbbrev(i) + " ")
end
println</lang>
{{out}}
<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|Nim}}==
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.