01.07.2013, 22:12
pawn Код:
GetSuffix(iNumber)
{
new
iSuffix[4]
;
switch (iNumber)
{
case 1, 21, 31, 41: iSuffix = "st";
case 2, 22, 32, 42: iSuffix = "nd";
case 3, 23, 33, 43: iSuffix = "rd";
default: iSuffix = "th";
}
return iSuffix;
}

