Skip to content

AleXKarasev/CurrencyToWord

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CurrencyToWord

Task

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).

Example:

  1. Input: 0 Output: zero dollars
  2. Input: 1 Output: one dollar
  3. Input: 25,1 Output: twenty five dollars and ten cents
  4. Input: 0,01 Output: zero dollars and one cent
  5. Input: 45 100 Output: forty five thousand one hundred dollars
  6. 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

Requirements:

  • 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.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages