(Edited to make it considerably more concise.)
|
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);
|
||||
|
1 |
|
||
|
This should work reasonably well:
|
||||
