Write the program which converts currency from number into word presentation. Maximum number of dollars is 999 999 999. Maximum number of cents is 99. Separator between dollars and cents is ‘,’ (comma).
- Input: 0 Output: zero dollars
- Input: 1 Output: one dollar
- Input: 25,1 Output: twenty five dollars and ten cents
- Input: 0,01 Output: zero dollars and one cent
- Input: 45 100 Output: forty five thousand one hundred dollars
- Input: 999 999 999,99 Output: nine hundred ninety nine million nine hundred ninety nine thousand nine hundred ninety nine dollars and ninety nine cents
- Use Client-Server architecture;
- Use .NET framework 4.5 or higher;
- Client must be implemented using WPF;
- Parsing and converting must be implemented on Server side;
- Client-Server communication must be implemented using WCF.