|
| 1 | +using System; |
| 2 | +using System.Collections.Generic; |
| 3 | +using System.Linq; |
| 4 | +using System.Web; |
| 5 | +using System.Web.Services; |
| 6 | + |
| 7 | +namespace NumberToWordsWebService |
| 8 | +{ |
| 9 | + /// <summary> |
| 10 | + /// Summary description for WebService2 |
| 11 | + /// </summary> |
| 12 | + [WebService(Namespace = "http://tempuri.org/")] |
| 13 | + [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)] |
| 14 | + [System.ComponentModel.ToolboxItem(false)] |
| 15 | + // To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line. |
| 16 | + // [System.Web.Script.Services.ScriptService] |
| 17 | + public class WebService2 : System.Web.Services.WebService |
| 18 | + { |
| 19 | + /* [WebMethod] |
| 20 | + public string kobval(decimal d) |
| 21 | + { |
| 22 | + d = d % 1; |
| 23 | + return d.ToString(); |
| 24 | + } |
| 25 | + */ |
| 26 | + [WebMethod] |
| 27 | + public string NumberToText(decimal number) |
| 28 | + { |
| 29 | + string result = null; |
| 30 | + |
| 31 | + if (number == 0) |
| 32 | + { |
| 33 | + result = "Zero"; |
| 34 | + } |
| 35 | + else |
| 36 | + { |
| 37 | + var naira = NumberToText((long)number)+" naira"; |
| 38 | + var kobo = KoboValue(number) + " kobo"; |
| 39 | + result = naira + " and " + kobo; |
| 40 | + return result; |
| 41 | + } |
| 42 | + |
| 43 | + return result + " naira"; |
| 44 | + } |
| 45 | + |
| 46 | + public string KoboValue(decimal d) |
| 47 | + { |
| 48 | + d = d % 1; |
| 49 | + d = d * 100; |
| 50 | + string f; |
| 51 | + if (d == 0) |
| 52 | + { |
| 53 | + f = "zero"; |
| 54 | + } |
| 55 | + else |
| 56 | + { |
| 57 | + f = NumberToText((long)d); |
| 58 | + } |
| 59 | + return f; |
| 60 | + } |
| 61 | + public string NumberToText(long n) |
| 62 | + { |
| 63 | + if (n < 0) |
| 64 | + return "Minus " + NumberToText(-n); |
| 65 | + else if (n == 0) |
| 66 | + return ""; |
| 67 | + else if (n <= 19) |
| 68 | + return new string[] {"One", "Two", "Three", "Four", "Five", "Six", "Seven", "Eight", |
| 69 | + "Nine", "Ten", "Eleven", "Twelve", "Thirteen", "Fourteen", "Fifteen", "Sixteen", |
| 70 | + "Seventeen", "Eighteen", "Nineteen"}[n - 1] + " "; |
| 71 | + else if (n <= 99) |
| 72 | + return new string[] {"Twenty", "Thirty", "Forty", "Fifty", "Sixty", "Seventy", |
| 73 | + "Eighty", "Ninety"}[n / 10 - 2] + " " + NumberToText(n % 10); |
| 74 | + else if (n <= 199) |
| 75 | + return "One Hundred " + NumberToText(n % 100); |
| 76 | + else if (n <= 999) |
| 77 | + return NumberToText(n / 100) + "Hundred " + NumberToText(n % 100); |
| 78 | + else if (n <= 1999) |
| 79 | + return "One Thousand " + NumberToText(n % 1000); |
| 80 | + else if (n <= 999999) |
| 81 | + return NumberToText(n / 1000) + "Thousand " + NumberToText(n % 1000); |
| 82 | + else if (n <= 1999999) |
| 83 | + return "One Million " + NumberToText(n % 1000000); |
| 84 | + else if (n <= 999999999) |
| 85 | + return NumberToText(n / 1000000) + "Million " + NumberToText(n % 1000000); |
| 86 | + else if (n <= 1999999999) |
| 87 | + return "One Billion " + NumberToText(n % 1000000000); |
| 88 | + else |
| 89 | + return NumberToText(n / 1000000000) + "Billion " + NumberToText(n % 1000000000); |
| 90 | + } |
| 91 | + } |
| 92 | +} |
0 commit comments