show/hide this revision's text 2
static string[] ones = new string[] { "Zero", ", "One", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight", "Nine" }; static string[] tens = new string[] { "Twenty", "Thirty", "Forty", "Fifty", "Sixty", "Seventy", "Eighty", "Ninety" }; static string[] thousandsGroups = { "", " Thousand", " Million", " Billion" }; private static string FriendlyIntegerLessThan100(int FriendlyInteger(int n, string leftDigits, int thousands) if (n >= 100 || n < == 0) throw new ArgumentOutOfRangeException()return leftDigits; string friendlyInt = leftDigits; if (friendlyInt.Length > 0) friendlyInt += " "; if (n < 10) return friendlyInt += ones[n]; return friendlyInt += teens[n - 10]; else if (n < 100) return friendlyInt += FriendlyInteger(n % 10, tens[n / 10 - 2] + (n%10 == 0 ? "" : " " + ones[n % 10])2], 0); private static string FriendlyIntegerLessThan1000(int n) else if (n >= 1000 || n < 01000) throw new ArgumentOutOfRangeException(); string hundreds friendlyInt += ""; if (n >= FriendlyInteger(n % 100) hundreds = , (ones[n / 100] + " Hundred"; if (n % 100 == 0) return hundredsHundred"), 0); hundreds else friendlyInt += " FriendlyInteger(n % 1000, FriendlyInteger(n / 1000, "", thousands+1), 0); return hundreds friendlyInt + FriendlyIntegerLessThan100(n % 100)thousandsGroups[thousands]; string billions = ""; if (n >= 1000000000) billions =FriendlyIntegerLessThan1000((int)(n % 1000000000000) / 1000000000) + " Billion"; if (n % 1000000000 == 0) return billions; billions += " "; string millions = ""; if (n >= 1000000) millions = FriendlyIntegerLessThan1000((int)(n % 1000000000) / 1000000) + " Million"; else if (n % 1000000 == < 0) return billions + millions; millions += ""; string thousands = Negative " "; if (n >= 1000) thousands = FriendlyIntegerLessThan1000((int)(n % 1000000) / 1000) + " Thousand"; if (n % 1000 == 0) return billions + millions + thousands; thousands += " "IntegerToWritten(-n); return billions + millions + thousands + FriendlyIntegerLessThan1000(n % 1000)FriendlyInteger(n, "", 0);

(Edited to make it considerably more concise.)

show/hide this revision's text 1

This should work reasonably well:

public static class HumanFriendlyInteger
{
    static string[] ones = new string[] { "Zero", "One", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight", "Nine" };
    static string[] teens = new string[] { "Ten", "Eleven", "Twelve", "Thirteen", "Fourteen", "Fifteen", "Sixteen", "Seventeen", "Eighteen", "Nineteen" };
    static string[] tens = new string[] { "Twenty", "Thirty", "Forty", "Fifty", "Sixty", "Seventy", "Eighty", "Ninety" };

    private static string FriendlyIntegerLessThan100(int n)
    {
        if (n >= 100 || n < 0)
        {
            throw new ArgumentOutOfRangeException();
        }

        if (n < 10)
        {
            return ones[n];
        }
        else if (n < 20)
        {
            return teens[n - 10];
        }
        else
        {
            return tens[n / 10 - 2] + (n%10 == 0 ? "" : " " + ones[n % 10]);
        }
    }

    private static string FriendlyIntegerLessThan1000(int n)
    {
        if (n >= 1000 || n < 0)
        {
            throw new ArgumentOutOfRangeException();
        }

        string hundreds = "";

        if (n >= 100)
        {
            hundreds = ones[n / 100] + " Hundred";
            if (n % 100 == 0)
            {
                return hundreds;
            }
            hundreds += " ";
        }

        return hundreds + FriendlyIntegerLessThan100(n % 100);
    }

    public static string IntegerToWritten(int n)
    {
        string billions = "";
        if (n >= 1000000000)
        {
            billions = FriendlyIntegerLessThan1000((int)(n % 1000000000000) / 1000000000) + " Billion";
            if (n % 1000000000 == 0)
            {
                return billions;
            }
            billions += " ";
        }

        string millions = "";
        if (n >= 1000000)
        {
            millions = FriendlyIntegerLessThan1000((int)(n % 1000000000) / 1000000) + " Million";
            if (n % 1000000 == 0)
            {
                return billions + millions;
            }
            millions += " ";
        }

        string thousands = "";
        if (n >= 1000)
        {
            thousands = FriendlyIntegerLessThan1000((int)(n % 1000000) / 1000) + " Thousand";
            if (n % 1000 == 0)
            {
                return billions + millions + thousands;
            }
            thousands += " ";
        }

        return billions + millions + thousands + FriendlyIntegerLessThan1000(n % 1000);
    }

}